:root {
  --brand-maroon: #51101C;
  --brand-tan: #9A6539;
  --brand-purple: #6F2DBD;
  --brand-black: #000000;
  --brand-cream: #F8F2EC;
  --brand-white: #F1E4D9;
  --font-menu: "Radio Canada Big", Arial, sans-serif;
  --font-logo: "Libre Caslon Text", Georgia, serif;
  --container-lg: 90vw;
  --container-md: 95vw;
  --container-sm: 95vw;
  --section-spacing: 80px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: #f8f2ec;
  color: var(--brand-black);
  font-family: var(--font-menu);
}

body.nisarga-page {
  background: #fff;
}

body.thank-you-page {
  min-height: 100svh;
  background: var(--brand-maroon);
}

body.popup-open {
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.thank-you-main {
  display: grid;
  min-height: 100svh;
  padding: 32px;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(81, 16, 28, .94), rgba(69, 94, 43, .72)),
    url("../images/patern.png") center / cover no-repeat;
  color: #F8F8F8;
}

.thank-you-panel {
  display: grid;
  justify-items: center;
  width: min(100%, 720px);
  text-align: center;
}

.thank-you-logo {
  width: clamp(112px, 12vw, 164px);
  margin-bottom: clamp(30px, 4vw, 52px);
  filter: brightness(0) invert(1);
}

.thank-you-eyebrow {
  margin: 0 0 18px;
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.thank-you-panel h1 {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-logo);
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.thank-you-panel p:not(.thank-you-eyebrow) {
  width: min(100%, 460px);
  margin: 24px 0 0;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
}

.thank-you-actions .octave-btn {
  min-width: 188px;
}

button:disabled,
.octave-btn:disabled {
  cursor: not-allowed;
  opacity: .72;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: transparent;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(248, 242, 236, .72);
  border-bottom: 1px solid rgba(81, 16, 28, .12);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .08);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.header-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: var(--container-lg);
  min-height: 127px;
  margin-inline: auto;
  transition: min-height .35s var(--ease);
}

.site-header.is-scrolled .header-container {
  min-height: 76px;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-width: 0;
}

.main-nav:first-of-type {
  padding-right: clamp(54px, 7vw, 104px);
}

.main-nav:last-of-type {
  padding-left: clamp(54px, 7vw, 104px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--brand-black);
  text-align: left;
  font-family: var(--font-menu);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 4.62px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .3s var(--ease), transform .3s var(--ease);
}

.site-header.is-scrolled .nav-link {
  min-height: 36px;
  font-size: 11px;
  line-height: 1.5;
  letter-spacing: 3.4px;
}

.nav-link::after {
  content: "";
  position: absolute;
  right: 4.62px;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: var(--brand-maroon);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-active {
  color: var(--brand-maroon);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.brand-logo {
  position: relative;
  display: block;
  width: 122px;
  transition: width .35s var(--ease), transform .35s var(--ease);
}

.site-header.is-scrolled .brand-logo {
  width: 92px;
}

.brand-logo img {
  width: 100%;
}

.brand-logo-light {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.about-page .site-header:not(.is-scrolled) .nav-link,
.projects-page .site-header:not(.is-scrolled) .nav-link,
.blog-page .site-header:not(.is-scrolled) .nav-link,
.contact-page .site-header:not(.is-scrolled) .nav-link,
.career-page .site-header:not(.is-scrolled) .nav-link {
  color: #F8F8F8;
}

.about-page .site-header:not(.is-scrolled) .nav-link::after,
.projects-page .site-header:not(.is-scrolled) .nav-link::after,
.blog-page .site-header:not(.is-scrolled) .nav-link::after,
.contact-page .site-header:not(.is-scrolled) .nav-link::after,
.career-page .site-header:not(.is-scrolled) .nav-link::after {
  background: #F8F8F8;
}

.about-page .site-header:not(.is-scrolled) .nav-link:hover,
.about-page .site-header:not(.is-scrolled) .nav-link:focus-visible,
.about-page .site-header:not(.is-scrolled) .nav-link.is-active,
.projects-page .site-header:not(.is-scrolled) .nav-link:hover,
.projects-page .site-header:not(.is-scrolled) .nav-link:focus-visible,
.projects-page .site-header:not(.is-scrolled) .nav-link.is-active,
.blog-page .site-header:not(.is-scrolled) .nav-link:hover,
.blog-page .site-header:not(.is-scrolled) .nav-link:focus-visible,
.blog-page .site-header:not(.is-scrolled) .nav-link.is-active,
.contact-page .site-header:not(.is-scrolled) .nav-link:hover,
.contact-page .site-header:not(.is-scrolled) .nav-link:focus-visible,
.contact-page .site-header:not(.is-scrolled) .nav-link.is-active,
.career-page .site-header:not(.is-scrolled) .nav-link:hover,
.career-page .site-header:not(.is-scrolled) .nav-link:focus-visible,
.career-page .site-header:not(.is-scrolled) .nav-link.is-active {
  color: #F8F8F8;
}

.about-page .site-header:not(.is-scrolled) .brand-logo-default,
.projects-page .site-header:not(.is-scrolled) .brand-logo-default,
.blog-page .site-header:not(.is-scrolled) .brand-logo-default,
.contact-page .site-header:not(.is-scrolled) .brand-logo-default,
.career-page .site-header:not(.is-scrolled) .brand-logo-default {
  opacity: 0;
}

.about-page .site-header:not(.is-scrolled) .brand-logo-light,
.projects-page .site-header:not(.is-scrolled) .brand-logo-light,
.blog-page .site-header:not(.is-scrolled) .brand-logo-light,
.contact-page .site-header:not(.is-scrolled) .brand-logo-light,
.career-page .site-header:not(.is-scrolled) .brand-logo-light {
  opacity: 1;
}

.about-page .site-header:not(.is-scrolled) .menu-toggle,
.projects-page .site-header:not(.is-scrolled) .menu-toggle,
.blog-page .site-header:not(.is-scrolled) .menu-toggle,
.contact-page .site-header:not(.is-scrolled) .menu-toggle,
.career-page .site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(248, 248, 248, .45);
}

.about-page .site-header:not(.is-scrolled) .menu-toggle span,
.projects-page .site-header:not(.is-scrolled) .menu-toggle span,
.blog-page .site-header:not(.is-scrolled) .menu-toggle span,
.contact-page .site-header:not(.is-scrolled) .menu-toggle span,
.career-page .site-header:not(.is-scrolled) .menu-toggle span {
  background: #F8F8F8;
}

.menu-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(81, 16, 28, .22);
  border-radius: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 5px auto;
  background: var(--brand-maroon);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

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

.menu-open .menu-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

.mobile-social {
  display: none;
}

.page-main {
  min-height: 100vh;
}

.about-intro-section,
.founders-marquee-section,
.management-section,
.vision-mission-section,
.about-choose-section,
.projects-current-section,
.projects-completed-section,
.blog-insights-section,
.project-preview,
.why-choose,
.insights-section,
.testimonials-section,
.contact-section,
.contact-info-section,
.contact-office-section,
.contact-map-section,
.nisarga-location-hero,
.nisarga-connectivity-section,
.nisarga-floor-section,
.nisarga-plan-section,
.nisarga-viewsion-section,
.nisarga-amenities-section,
.nisarga-enquiry-section,
.nisarga-interiors-section,
.nisarga-map-section,
.nisarga-master-plan-section,
.nisarga-legend-section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 760px;
}

.about-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .48) 0%, rgba(0, 0, 0, .28) 48%, rgba(0, 0, 0, .42) 100%),
    url("../images/about-banner.webp") center / cover no-repeat;
  color: #F8F8F8;
}

.about-hero-inner {
  width: var(--container-lg);
  margin-inline: auto;
  padding-bottom: clamp(72px, 8vw, 122px);
}

.about-hero-content {
  width: min(100%, 720px);
  margin-left: 0;
  padding-top: 0;
  text-align: left;
}

.about-hero-kicker {
  margin: 0 0 24px;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 0 0 58px;
  color: #F8F8F8;
  font-family: var(--font-logo);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  text-transform: uppercase;
}

.about-hero p {
  color: #F8F8F8;
}

.about-hero-content p:not(.about-hero-kicker) {
  margin: 0;
  width: min(100%, 690px);
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
}

.about-hero-content p + p {
  margin-top: 28px;
}

.about-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 38px;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: lowercase;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.about-hero-scroll svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-hero-scroll:hover,
.about-hero-scroll:focus-visible {
  opacity: .72;
  transform: translateY(3px);
}

.js-enabled .about-hero-content {
  opacity: 0;
  transform: translateY(28px) scale(.98);
}

.js-enabled .about-hero-content.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.about-intro-section {
  overflow: hidden;
  background: var(--brand-maroon);
  color: #F8F8F8;
}

.about-intro-inner {
  display: grid;
  grid-template-columns: minmax(110px, 170px) minmax(360px, 560px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(34px, 4.2vw, 78px);
  width: calc(100% - max(54px, calc((100vw - var(--container-lg)) / 2)));
  min-height: clamp(420px, 30vw, 520px);
  margin-inline: max(54px, calc((100vw - var(--container-lg)) / 2)) 0;
}

.about-intro-label {
  display: flex;
  align-self: end;
  justify-content: flex-start;
  gap: 8px;
  padding-bottom: clamp(42px, 5vw, 78px);
  color: #F8F8F8;
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-align: left;
  text-transform: uppercase;
}

.about-intro-label span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.about-intro-copy {
  display: grid;
  gap: 22px;
  max-width: 560px;
}

.about-intro-copy p {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.about-intro-media {
  align-self: stretch;
  min-width: 0;
  margin: 0;
}

.about-intro-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(420px, 30vw, 520px);
  object-fit: cover;
  object-position: center;
}

.js-enabled .about-intro-label,
.js-enabled .about-intro-copy,
.js-enabled .about-intro-media {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .about-intro-label.is-visible,
.js-enabled .about-intro-copy.is-visible,
.js-enabled .about-intro-media.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.js-enabled .about-intro-media.is-visible {
  animation-name: brandImageReveal;
}

.founders-marquee-section {
  overflow: hidden;
  background: var(--brand-maroon);
  padding-block: 60px;
}

.founders-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.founders-marquee-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: #F8F8F8;
  opacity: .04;
  text-align: center;
  font-family: var(--font-menu);
  font-size: 160px;
  font-style: normal;
  font-weight: 400;
  line-height: 160px;
  text-transform: uppercase;
  animation: showcaseMarquee 36s linear infinite;
  will-change: transform;
}

.founders-marquee-track span {
  flex: 0 0 auto;
  padding-inline: .18em;
}

.management-section {
  overflow: hidden;
  background: var(--brand-maroon);
  color: #F8F8F8;
}

.management-slider {
  width: 100%;
}

.management-track {
  display: block;
}

.management-slide {
  display: none;
  grid-template-columns: minmax(0, 45vw) minmax(0, 1fr);
  min-width: 100%;
}

.management-slide.is-active {
  display: grid;
}

.management-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.management-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 39vw, 620px);
  object-fit: cover;
  object-position: center top;
}

.management-content {
  align-self: center;
  width: min(calc(100% - 108px), 640px);
  margin-left: clamp(72px, 8vw, 128px);
  padding-block: 60px 0;
}

.management-kicker {
  margin: 0 0 22px;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.management-content h2 {
  margin: 0 0 70px;
  color: #F8F8F8;
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.management-content p:not(.management-kicker) {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.management-content p + p {
  margin-top: 24px;
}

.management-controls {
  display: flex;
  gap: 34px;
  margin-top: 118px;
}

.management-controls-mobile {
  display: none;
}

.management-arrow {
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 34px;
  cursor: pointer;
  filter: invert(1);
  opacity: .9;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.management-arrow-prev {
  background-image: url("../images/left-arrow.svg");
}

.management-arrow-next {
  background-image: url("../images/right-arrow.svg");
}

.management-arrow:hover,
.management-arrow:focus-visible {
  opacity: .65;
}

.management-arrow-prev:hover,
.management-arrow-prev:focus-visible {
  transform: translateX(-3px);
}

.management-arrow-next:hover,
.management-arrow-next:focus-visible {
  transform: translateX(3px);
}

.js-enabled .management-media {
  opacity: 1;
  transform: none;
}

.js-enabled .management-content {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .management-media.is-visible {
  animation: none;
}

.js-enabled .management-content.is-visible {
  animation: brandTextReveal .9s var(--ease) .12s both;
}

.vision-mission-section {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: #F8F8F8 url("../images/Vision-banner.webp") center / cover no-repeat;
  color: var(--brand-black);
}

.vision-mission-inner {
  display: grid;
  align-content: center;
  gap: clamp(96px, 10vw, 168px);
  width: var(--container-lg);
  min-height: inherit;
  margin-inline: auto;
  padding-block: 70px;
}

.vision-mission-card {
  width: min(100%, 520px);
  margin-left: auto;
}

.vision-mission-card h2 {
  margin: 0 0 16px;
  color: var(--brand-black);
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.vision-mission-kicker {
  margin: 0 0 52px;
  color: var(--brand-black);
  text-align: left;
  font-family: var(--font-menu);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.62px;
  text-transform: uppercase;
}

.vision-mission-card p:not(.vision-mission-kicker) {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.js-enabled .vision-mission-card {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .vision-mission-card.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.about-choose-section {
  overflow: hidden;
  background: #FFF;
  padding-block: 60px 0;
}

.about-choose-heading {
  width: var(--container-lg);
  margin-inline: auto;
  text-align: center;
}

.about-choose-heading p {
  margin: 0 0 18px;
  color: var(--brand-black);
  text-align: center;
  font-family: var(--font-menu);
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.62px;
  text-transform: uppercase;
}

.about-choose-heading h2 {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-align: center;
  text-transform: uppercase;
}

.about-choose-slider {
  width: 100%;
  margin-top: 48px;
  overflow: hidden;
}

.about-choose-slider::-webkit-scrollbar {
  display: none;
}

.about-choose-track {
  display: flex;
  align-items: stretch;
  gap: 18px;
  width: max-content;
  animation: aboutChooseLoop 34s linear infinite;
  will-change: transform;
}

.about-choose-slider:hover .about-choose-track,
.about-choose-slider:focus-within .about-choose-track {
  animation-play-state: paused;
}

.about-choose-card {
  position: relative;
  flex: 0 0 clamp(420px, 33vw, 620px);
  overflow: hidden;
  background: var(--brand-black);
}

.about-choose-card-large {
  flex-basis: clamp(420px, 33vw, 620px);
}

.about-choose-card img {
  width: 100%;
  height: clamp(300px, 32vw, 460px);
  object-fit: cover;
  filter: saturate(.95) contrast(1);
  transition: transform .8s var(--ease), filter .8s var(--ease);
}

.about-choose-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(0, 0, 0, .54));
  pointer-events: none;
}

.about-choose-card h3 {
  position: absolute;
  left: 52px;
  bottom: 48px;
  z-index: 1;
  margin: 0;
  color: #F8F8F8;
  font-family: "Lexend Giga", var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 4px;
}

.about-choose-card:hover img,
.about-choose-card:focus-within img {
  filter: saturate(1.06) contrast(1.06);
  transform: scale(1.045);
}

.about-choose-controls {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-top: 34px;
}

.about-choose-arrow {
  display: block;
  width: 34px;
  height: 34px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 34px;
  opacity: .86;
}

.about-choose-arrow-prev {
  background-image: url("../images/left-arrow.svg");
}

.about-choose-arrow-next {
  background-image: url("../images/right-arrow.svg");
}

.js-enabled .about-choose-heading,
.js-enabled .about-choose-slider,
.js-enabled .about-choose-controls {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .about-choose-heading.is-visible,
.js-enabled .about-choose-slider.is-visible,
.js-enabled .about-choose-controls.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.projects-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .18) 0%, rgba(0, 0, 0, .06) 50%, rgba(0, 0, 0, .42) 100%),
    url("../images/PROJECTS-banner.webp") center / cover no-repeat;
  color: #F8F8F8;
}

.projects-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(48px, 8vw, 140px);
  width: var(--container-lg);
  margin-inline: auto;
  padding-bottom: clamp(36px, 4.8vw, 72px);
}

.projects-hero h1 {
  display: inline-block;
  max-width: 920px;
  margin: 0;
  color: rgba(217, 217, 217, .28);
  font-family: var(--font-menu);
  font-size: clamp(42px, 5.2vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 1px;
  opacity: 1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .16),
    0 18px 46px rgba(0, 0, 0, .28);
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(248, 248, 248, .16);
  backdrop-filter: blur(2px);
}

.projects-hero-copy {
  padding-bottom: 8px;
}

.projects-hero-copy p {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.projects-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: lowercase;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.projects-hero-scroll svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.projects-hero-scroll:hover,
.projects-hero-scroll:focus-visible {
  opacity: .72;
  transform: translateY(3px);
}

.projects-placeholder {
  background: var(--brand-maroon);
}

.projects-placeholder-inner {
  width: var(--container-lg);
  margin-inline: auto;
  text-align: center;
}

.projects-placeholder .section-eyebrow {
  color: #F8F8F8;
}

.projects-placeholder h2 {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.js-enabled .projects-hero h1,
.js-enabled .projects-hero-copy {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .projects-hero-copy {
  opacity: 1;
  transform: none;
}

.js-enabled .projects-hero h1.is-visible,
.js-enabled .projects-hero-copy.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.js-enabled .projects-hero h1.is-visible {
  opacity: 1;
}

.blog-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .04) 52%, rgba(0, 0, 0, .42) 100%),
    url("../images/blog-banner-new.webp") center / cover no-repeat;
  color: #F8F8F8;
}

.blog-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(48px, 8vw, 140px);
  width: var(--container-lg);
  margin-inline: auto;
  padding-bottom: clamp(36px, 4.8vw, 72px);
}

.blog-hero h1 {
  display: inline-block;
  max-width: 920px;
  margin: 0;
  color: rgba(217, 217, 217, .3);
  font-family: var(--font-menu);
  font-size: clamp(42px, 5.2vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 1px;
  opacity: 1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .16),
    0 18px 46px rgba(0, 0, 0, .28);
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(248, 248, 248, .16);
  backdrop-filter: blur(2px);
}

.blog-hero-copy {
  padding-bottom: 8px;
}

.blog-hero-copy p {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.blog-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: lowercase;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.blog-hero-scroll svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.blog-hero-scroll:hover,
.blog-hero-scroll:focus-visible {
  opacity: .72;
  transform: translateY(3px);
}

.js-enabled .blog-hero h1,
.js-enabled .blog-hero-copy {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .blog-hero h1.is-visible,
.js-enabled .blog-hero-copy.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.js-enabled .blog-hero h1.is-visible {
  opacity: 1;
}

.contact-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .04) 52%, rgba(0, 0, 0, .42) 100%),
    url("../images/CONTACT-US-new.webp") center / cover no-repeat;
  color: #F8F8F8;
}

.contact-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  align-items: end;
  gap: clamp(48px, 8vw, 140px);
  width: var(--container-lg);
  margin-inline: auto;
  padding-bottom: clamp(36px, 4.8vw, 72px);
}

.contact-hero h1 {
  display: inline-block;
  max-width: 920px;
  margin: 0;
  color: rgba(217, 217, 217, .3);
  font-family: var(--font-menu);
  font-size: clamp(42px, 5.2vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 1px;
  opacity: 1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .16),
    0 18px 46px rgba(0, 0, 0, .28);
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(248, 248, 248, .16);
  backdrop-filter: blur(2px);
  transform: translateY(18px);
}

.contact-hero-copy {
  padding-bottom: 8px;
}

.contact-hero-copy p {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.contact-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: lowercase;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.contact-hero-scroll svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-hero-scroll:hover,
.contact-hero-scroll:focus-visible {
  opacity: .72;
  transform: translateY(3px);
}

.career-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: end;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .34) 0%, rgba(0, 0, 0, .12) 50%, rgba(0, 0, 0, .52) 100%),
    url("../images/career-banner.jpeg") center / cover no-repeat;
  color: #F8F8F8;
}

.career-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  gap: clamp(48px, 8vw, 140px);
  width: var(--container-lg);
  margin-inline: auto;
  padding-bottom: clamp(36px, 4.8vw, 72px);
}

.career-hero h1 {
  display: inline-block;
  max-width: 920px;
  margin: 0;
  color: rgba(217, 217, 217, .3);
  font-family: var(--font-menu);
  font-size: clamp(42px, 5.2vw, 72px);
  font-style: normal;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 1px;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, .16),
    0 18px 46px rgba(0, 0, 0, .28);
  text-transform: uppercase;
  -webkit-text-stroke: 1px rgba(248, 248, 248, .16);
  backdrop-filter: blur(2px);
  transform: translateY(18px);
}

.career-hero-copy {
  padding-bottom: 8px;
}

.career-hero-copy p {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}

.career-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 42px;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: lowercase;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.career-hero-scroll svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.career-hero-scroll:hover,
.career-hero-scroll:focus-visible {
  opacity: .72;
  transform: translateY(3px);
}

.career-openings-heading h2,
.career-process-heading h2 {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-logo);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  text-transform: uppercase;
}

.career-job-card p,
.career-process-steps span {
  color: var(--brand-maroon);
  font-family: "Lexend Giga", var(--font-menu);
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.career-job-card h3,
.career-process-steps h3 {
  margin: 24px 0 0;
  color: currentColor;
  font-family: var(--font-logo);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.career-process-steps p {
  margin: 28px 0 0;
  color: rgba(248, 248, 248, .76);
  font-family: var(--font-menu);
  font-size: 14px;
  line-height: 24px;
}

.career-openings-section {
  background: #F8F8F8;
  padding-block: clamp(88px, 8vw, 132px);
}

.career-openings-heading {
  width: var(--container-lg);
  margin: 0 auto clamp(42px, 5vw, 74px);
  text-align: center;
}

.career-openings-heading .section-eyebrow {
  color: var(--brand-maroon);
}

.career-jobs-list {
  display: grid;
  gap: 14px;
  width: var(--container-lg);
  margin-inline: auto;
}

.career-job-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 136px;
  padding: 28px clamp(26px, 4vw, 58px);
  border: 1px solid rgba(0, 0, 0, .1);
  background: #FFF;
  transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}

.career-job-card:hover,
.career-job-card:focus-within {
  border-color: rgba(81, 16, 28, .32);
  box-shadow: 0 22px 56px rgba(0, 0, 0, .08);
  transform: translateY(-2px);
}

.career-job-card p {
  margin: 0;
}

.career-job-card h3 {
  margin-top: 10px;
  color: var(--brand-black);
}

.career-job-card span {
  display: block;
  margin-top: 10px;
  color: rgba(0, 0, 0, .56);
  font-family: var(--font-menu);
  font-size: 13px;
  line-height: 20px;
}

.career-apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 48px;
  padding: 14px 24px;
  border: 0;
  background: var(--brand-maroon);
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 3.5px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.career-job-card .career-apply-btn {
  place-self: center end;
}

.career-apply-btn:hover,
.career-apply-btn:focus-visible {
  background: #2F0A12;
  transform: translateY(-2px);
}

.career-process-section {
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .26), rgba(0, 0, 0, .26)),
    url("../images/textbg-image.webp") center / cover no-repeat;
  padding-block: clamp(88px, 8vw, 132px);
}

.career-process-inner {
  width: var(--container-lg);
  margin-inline: auto;
}

.career-process-heading {
  max-width: 720px;
}

.career-process-heading h2 {
  color: #F8F8F8;
}

.career-process-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: clamp(44px, 5vw, 74px);
  background: rgba(248, 248, 248, .18);
}

.career-process-steps article {
  min-height: 260px;
  padding: clamp(30px, 4vw, 54px);
  background: rgba(0, 0, 0, .46);
  color: #F8F8F8;
}

.career-popup .nisarga-popup-dialog {
  background: #F8F8F8;
}

.career-popup .nisarga-popup-dialog h2,
.career-popup .nisarga-popup-close,
.career-popup .nisarga-popup-form span {
  color: var(--brand-maroon);
}

.career-popup .nisarga-popup-submit {
  background: var(--brand-maroon);
}

.career-popup .nisarga-popup-submit:hover,
.career-popup .nisarga-popup-submit:focus-visible {
  background: #2F0A12;
}

.js-enabled .career-openings-heading,
.js-enabled .career-job-card,
.js-enabled .career-process-heading,
.js-enabled .career-process-steps article {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .career-openings-heading.is-visible,
.js-enabled .career-job-card.is-visible,
.js-enabled .career-process-heading.is-visible,
.js-enabled .career-process-steps article.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.js-enabled .contact-hero h1,
.js-enabled .contact-hero-copy,
.js-enabled .career-hero h1,
.js-enabled .career-hero-copy {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .contact-hero h1.is-visible,
.js-enabled .contact-hero-copy.is-visible,
.js-enabled .career-hero h1.is-visible,
.js-enabled .career-hero-copy.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.js-enabled .contact-hero h1.is-visible,
.js-enabled .career-hero h1.is-visible {
  opacity: 1;
}

.contact-office-section {
  display: grid;
  grid-template-columns: minmax(0, 47.1vw) minmax(0, 1fr);
  min-height: clamp(520px, 46vw, 728px);
  overflow: hidden;
  background: var(--brand-maroon);
  color: #F8F8F8;
}

.contact-office-media {
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.contact-office-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 46vw, 728px);
  object-fit: cover;
  object-position: center;
  filter: grayscale(1);
  transform: scale(1);
  transition: transform .9s var(--ease), filter .9s var(--ease);
}

.contact-office-media:hover img,
.contact-office-media:focus-within img {
  filter: grayscale(.72) contrast(1.04);
  transform: scale(1.035);
}

.contact-office-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 96px, 490px);
  margin-inline: auto;
  padding-block: 0;
}

.contact-office-content .section-eyebrow {
  margin-bottom: 30px;
  color: #F8F2EC;
  text-align: left;
  font-family: var(--font-menu);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.62px;
}

.contact-office-content h2 {
  margin: 0;
  color: #F8F2EC;
  font-family: var(--font-logo);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.contact-office-content p:not(.section-eyebrow) {
  width: min(100%, 330px);
  margin: 70px 0 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
}

.contact-office-link {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  margin-top: 70px;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: capitalize;
  transition: color .35s var(--ease), transform .35s var(--ease), letter-spacing .35s var(--ease);
}

.contact-office-link:hover,
.contact-office-link:focus-visible {
  color: var(--brand-tan);
  letter-spacing: 5.7px;
  transform: translateX(5px);
}

.js-enabled .contact-office-media,
.js-enabled .contact-office-content {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .contact-office-media.is-visible,
.js-enabled .contact-office-content.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.contact-map-section {
  overflow: hidden;
  background: var(--brand-maroon);
  color: #F8F8F8;
  padding-block: 60px;
}

.contact-map-inner {
  width: var(--container-lg);
  margin-inline: auto;
}

.contact-map-heading {
  margin-bottom: 34px;
  text-align: center;
}

.contact-map-heading .section-eyebrow {
  color: #F8F2EC;
}

.contact-map-heading h2 {
  margin: 0;
  color: #F8F2EC;
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.contact-map-frame {
  width: 100%;
  overflow: hidden;
  background: rgba(248, 242, 236, .08);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 66 / 25;
  min-height: 430px;
  border: 0;
  filter: grayscale(1) contrast(1.02);
}

.js-enabled .contact-map-frame {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .contact-map-frame.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.projects-current-section,
.projects-tabs-section {
  overflow: hidden;
  background: var(--brand-maroon);
  padding-block: 60px;
  color: #F8F8F8;
}

.projects-current-inner {
  width: var(--container-lg);
  margin-inline: auto;
}

.projects-current-heading {
  text-align: center;
}

.projects-tabs-heading {
  text-align: center;
}

.projects-tabs-heading .section-eyebrow {
  color: #F8F8F8;
}

.projects-tabs-heading h2 {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.projects-tabs-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 220px));
  justify-content: center;
  gap: 12px;
  margin: 32px auto 0;
}

.projects-tab {
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid rgba(248, 248, 248, .42);
  background: transparent;
  color: #F8F8F8;
  cursor: pointer;
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: background .28s var(--ease), color .28s var(--ease), border-color .28s var(--ease), transform .28s var(--ease);
}

.projects-tab:hover,
.projects-tab:focus-visible {
  border-color: #F8F8F8;
  transform: translateY(-2px);
}

.projects-tab.is-active {
  border-color: #F8F8F8;
  background: #F8F8F8;
  color: var(--brand-maroon);
}

.projects-tab-panels {
  margin-top: 36px;
}

.projects-tab-panel {
  animation: brandTextReveal .65s var(--ease) both;
}

.projects-tab-panel[hidden] {
  display: none;
}

.projects-current-heading .section-eyebrow {
  color: #F8F8F8;
}

.projects-current-heading h2 {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.projects-heading-copy {
  max-width: 780px;
  margin: 18px auto 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
}

.projects-current-media {
  margin: 34px auto 0;
  overflow: hidden;
}

.projects-current-media img {
  width: 100%;
  aspect-ratio: 33 / 14;
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease), filter .8s var(--ease);
}

.projects-current-media:hover img,
.projects-current-media:focus-within img {
  filter: saturate(1.04) contrast(1.04);
  transform: scale(1.025);
}

.projects-current-info.project-preview-inner {
  grid-template-columns: minmax(76px, .8fr) minmax(190px, 1.2fr) minmax(40px, 1fr) auto minmax(40px, 1fr) minmax(86px, .75fr) minmax(100px, .8fr);
  column-gap: clamp(12px, 2vw, 30px);
  width: 100%;
  min-height: 0;
  padding-block: 22px 0;
}

.projects-current-info .project-preview-btn {
  grid-column: 4;
  justify-self: center;
  background: var(--brand-black);
}

.projects-current-info .project-stat:nth-of-type(1) {
  grid-column: 1;
}

.projects-current-info .project-stat:nth-of-type(2) {
  grid-column: 2;
}

.projects-current-info .project-stat:nth-of-type(3) {
  grid-column: 6;
}

.projects-current-info .project-stat:nth-of-type(4) {
  grid-column: 7;
}

.js-enabled .projects-current-heading,
.js-enabled .projects-current-media,
.js-enabled .projects-current-info {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .projects-current-heading.is-visible,
.js-enabled .projects-current-media.is-visible,
.js-enabled .projects-current-info.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.js-enabled .projects-current-media.is-visible {
  animation-name: brandImageReveal;
}

.projects-completed-section {
  overflow: hidden;
  background: var(--brand-maroon);
  padding-block: 46px;
  color: #F8F8F8;
}

.projects-completed-heading {
  width: var(--container-lg);
  margin-inline: auto;
  text-align: center;
}

.projects-completed-heading .section-eyebrow {
  color: #F8F8F8;
}

.projects-completed-heading h2 {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-logo);
  font-size: 30px;
  font-weight: 400;
  line-height: 36px;
  text-transform: uppercase;
}

.projects-completed-slider {
  width: var(--container-lg);
  margin: 28px auto 0;
  overflow: hidden;
}

.projects-completed-track {
  display: flex;
  gap: 24px;
  padding-inline: 0;
  transform: translateX(var(--completed-projects-offset, 0));
  transition: transform .75s var(--ease);
  will-change: transform;
}

.completed-project-card {
  flex: 0 0 calc((100% - 24px) / 2);
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 248, 248, .22);
  background: rgba(248, 248, 248, .06);
}

.completed-project-card > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
  display: block;
}

.completed-project-meta {
  display: block;
  margin-top: 0;
  padding: 18px 22px 20px;
  background: #F8F2EC;
  color: var(--brand-maroon);
}

.completed-project-meta h3 {
  margin: 0 0 6px;
  color: var(--brand-maroon);
  font-family: var(--font-menu);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
}

.completed-project-meta p {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 400;
  line-height: 17px;
  text-transform: uppercase;
}

.projects-completed-controls {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-top: 26px;
}

.projects-completed-arrow {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 24px;
  cursor: pointer;
  filter: invert(1);
  opacity: .9;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.projects-completed-prev {
  background-image: url("../images/left-arrow.svg");
}

.projects-completed-next {
  background-image: url("../images/right-arrow.svg");
}

.projects-completed-arrow:hover,
.projects-completed-arrow:focus-visible {
  opacity: .65;
}

.projects-completed-prev:hover,
.projects-completed-prev:focus-visible {
  transform: translateX(-3px);
}

.projects-completed-next:hover,
.projects-completed-next:focus-visible {
  transform: translateX(3px);
}

.js-enabled .projects-completed-heading,
.js-enabled .projects-completed-slider,
.js-enabled .projects-completed-controls {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .projects-completed-heading.is-visible,
.js-enabled .projects-completed-slider.is-visible,
.js-enabled .projects-completed-controls.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.projects-completed-controls.is-visible {
  justify-content: center;
}

.section-block {
  margin-block: var(--section-spacing);
}

.section-block:first-child {
  margin-block-start: 0;
}

.section-block:last-child {
  margin-block-end: 0;
}

.section-pad {
  padding-block: var(--section-spacing);
}

.hero-section {
  position: relative;
  height: 360vh;
  min-height: 2200px;
  background: var(--brand-cream);
}

.hero-sticky {
  position: sticky;
  top: 0;
  display: grid;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  place-items: center;
  isolation: isolate;
}

.hero-arch-wrap {
  --hero-start-width: 42;
  --hero-max-width: 760;
  --hero-start-offset: 445px;
  position: absolute;
  top: auto;
  right: 50%;
  bottom: 0;
  z-index: 1;
  width: min(calc(var(--hero-max-width) * 1px), calc(var(--hero-start-width) * 1vw));
  height: min(calc(var(--hero-max-width) * 1px), calc(var(--hero-start-width) * 1vw));
  overflow: hidden;
  transform: translateX(50%) translateY(var(--hero-start-offset));
  transform-origin: center bottom;
  clip-path: inset(0 0 0 0 round 50% 50% 0 0);
  will-change: width, height, transform, clip-path, aspect-ratio;
}

.hero-arch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform-origin: center center;
  will-change: transform;
}

.hero-arch-wrap picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-scroll-cue {
  position: absolute;
  top: clamp(240px, 27vh, 290px);
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--brand-black);
  font-family: var(--font-menu);
  font-size: 9px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 4.62px;
  text-align: center;
  text-transform: none;
  transform: translateX(-50%);
  will-change: opacity, transform;
}

.hero-scroll-cue.is-disabled {
  pointer-events: none;
}

.hero-section.is-complete .hero-arch-wrap {
  will-change: auto;
}

.hero-section.is-complete .hero-scroll-cue {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

.cue-line {
  display: block;
  width: 1px;
  height: 112px;
  background: rgba(0, 0, 0, .22);
  transform-origin: top;
  animation: cueLine 1.9s var(--ease) infinite;
}

.hero-scroll-cue svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: cueArrow 1.6s var(--ease) infinite;
}

@keyframes cueLine {
  0%, 100% {
    transform: scaleY(.7);
    opacity: .45;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes cueArrow {
  0%, 100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(4px);
  }
}

.octave-section {
  position: relative;
  overflow: hidden;
  background: var(--brand-cream);
  text-align: center;
}

.octave-section.section-pad {
  padding-block-start: clamp(40px, 8vh, 96px);
}

.octave-kicker {
  width: min(calc(100% - 48px), 560px);
  margin: 0 auto 30px;
  color: var(--brand-black);
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 9px;
  text-align: center;
  text-transform: uppercase;
}

.octave-marquee {
  width: 100%;
  overflow: hidden;
  margin-block: 0 46px;
  white-space: nowrap;
}

.octave-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: clamp(34px, 4vw, 72px);
  width: max-content;
  animation: octaveMarquee 42s linear infinite;
}

.octave-marquee:hover .octave-marquee-track {
  animation-play-state: paused;
}

.octave-marquee span {
  color: #F1E4D9;
  text-align: center;
  font-family: var(--font-logo);
  font-size: 100px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.octave-marquee img {
  width: clamp(84px, 7vw, 142px);
  height: auto;
  padding: 12px 24px;
  border: 1px solid #F1E4D9;
  border-radius: 60px;
  opacity: .8;
}

.octave-content {
  width: min(calc(100% - 48px), 560px);
  margin-inline: auto;
}

.js-enabled .octave-kicker,
.js-enabled .octave-marquee,
.js-enabled .octave-content {
  opacity: 0;
  transform: translateY(28px) scale(.98);
}

.js-enabled .octave-marquee {
  transform: translateY(30px) scale(.96);
  transform-origin: center;
}

.js-enabled .octave-kicker.is-visible,
.js-enabled .octave-content.is-visible {
  animation: brandTextReveal .85s var(--ease) both;
}

.js-enabled .octave-marquee.is-visible {
  animation: brandMarqueeReveal .95s var(--ease) both;
}

.js-enabled .octave-content.is-visible {
  animation-delay: .1s;
}

.octave-content h2 {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-menu);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.octave-actions {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.octave-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 50px;
  padding: 14px 30px;
  border: 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5.5px;
  overflow: hidden;
  text-align: center;
  white-space: nowrap;
  transition: color .35s var(--ease), transform .35s var(--ease), box-shadow .35s var(--ease);
}

.octave-btn::before,
.octave-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.octave-btn::before {
  background: rgba(248, 242, 236, .16);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease);
}

.octave-btn::after {
  width: 34px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .35), transparent);
  transform: translateX(-140%) skewX(-18deg);
  transition: transform .55s var(--ease);
}

.octave-btn:hover,
.octave-btn:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.octave-btn:hover::before,
.octave-btn:focus-visible::before {
  transform: scaleX(1);
}

.octave-btn:hover::after,
.octave-btn:focus-visible::after {
  transform: translateX(720%) skewX(-18deg);
}

.octave-btn-primary {
  background: var(--brand-maroon);
}

.octave-btn-dark {
  background: var(--brand-black);
}

.about-showcase {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--brand-maroon);
  color: var(--brand-cream);
}

.about-showcase.section-pad {
  padding-block: 0 58px;
}

.about-showcase-bg {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 60px;
  overflow: hidden;
  pointer-events: none;
}

.about-showcase-bg-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: #F8F8F8;
  opacity: .04;
  text-align: center;
  font-family: var(--font-menu);
  font-size: 160px;
  font-style: normal;
  font-weight: 400;
  line-height: 160px;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
  animation: showcaseMarquee 36s linear infinite;
  will-change: transform;
}

.about-showcase-bg-track span {
  flex: 0 0 auto;
  padding-inline: .18em;
}

.about-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 50vw 1px minmax(0, 1fr);
  gap: 0;
  align-items: start;
  width: 100%;
  margin-inline: auto;
}

.about-showcase-grid::before {
  content: "";
  width: 1px;
  min-height: clamp(430px, 39vw, 655px);
  margin-top: clamp(172px, 16.8vw, 282px);
  background: rgba(248, 242, 236, .16);
  grid-column: 2;
  grid-row: 1;
}

.about-showcase-media,
.about-showcase-panel {
  min-width: 0;
}

.about-showcase-media {
  grid-column: 1;
  overflow: hidden;
}

.about-showcase-media img {
  width: 86.9%;
  aspect-ratio: 1.058;
  object-fit: cover;
  filter: none;
  transform: scale(1);
  transform-origin: center;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: filter .9s var(--ease), transform .9s var(--ease), box-shadow .9s var(--ease);
}

.about-showcase-media:hover img,
.about-showcase-media:focus-within img {
  filter: grayscale(1) contrast(1.04);
  transform: scale(1.045);
  box-shadow: 0 24px 58px rgba(0, 0, 0, .22);
}

.about-showcase-copy {
  width: min(calc(100% - 96px), 720px);
  margin: 76px auto 0;
  text-align: center;
}

.about-showcase-copy p {
  margin: 0;
  color: var(--brand-white);
  font-family: var(--font-menu);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.about-showcase-copy p + p {
  margin-top: 18px;
}

.about-showcase-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 34px;
  color: var(--brand-white);
  font-family: var(--font-menu);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 4px;
  text-transform: uppercase;
  transition: color .35s var(--ease), transform .35s var(--ease), letter-spacing .35s var(--ease);
}

.about-showcase-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 4px;
  bottom: -4px;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .35s var(--ease), background .35s var(--ease);
}

.about-showcase-link:hover,
.about-showcase-link:focus-visible {
  color: #F8F8F8;
  letter-spacing: 4.8px;
  transform: translateY(-3px);
}

.about-showcase-link:hover::after,
.about-showcase-link:focus-visible::after {
  background: var(--brand-tan);
  transform: scaleX(.42);
}

.about-showcase-panel {
  grid-column: 3;
  padding: clamp(76px, 7.2vw, 120px) 0 0 clamp(72px, 7.1vw, 120px);
  text-align: left;
}

.js-enabled .about-showcase-copy,
.js-enabled .about-showcase-panel,
.js-enabled .featured-intro {
  opacity: 0;
  transform: translateY(28px) scale(.98);
}

.js-enabled .about-showcase-card {
  opacity: 0;
  transform: translateY(34px) scale(.94);
  transform-origin: top left;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.js-enabled .about-showcase-copy.is-visible,
.js-enabled .about-showcase-panel.is-visible,
.js-enabled .featured-intro.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.js-enabled .about-showcase-card.is-visible {
  animation: brandCardScale .95s var(--ease) both;
}

.js-enabled .about-showcase-card.is-visible h3,
.js-enabled .about-showcase-card.is-visible p {
  animation: brandTextReveal .75s var(--ease) both;
}

.js-enabled .about-showcase-card.is-visible h3 {
  animation-delay: .12s;
}

.js-enabled .about-showcase-card.is-visible p {
  animation-delay: .22s;
}

.section-eyebrow {
  margin: 0 0 25px;
  color: var(--brand-white);
  font-family: var(--font-menu);
  font-size: 10px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 5px;
  text-transform: uppercase;
}

.about-showcase-panel h2,
.featured-intro h2 {
  margin: 0;
  color: var(--brand-cream);
  font-family: var(--font-logo);
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.about-showcase-panel h2 {
  font-size: 24px;
  line-height: 29px;
}

.about-showcase-card {
  width: 100%;
  min-height: clamp(390px, 36.7vw, 616px);
  margin-top: clamp(72px, 5.3vw, 90px);
  margin-left: 0;
  padding: clamp(86px, 8vw, 134px) clamp(82px, 7.6vw, 128px);
  background: var(--brand-tan);
}

.about-showcase-card h3 {
  width: min(100%, 520px);
  margin: 0 0 54px;
  color: #F1E4D9;
  font-family: Kugile, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 37px;
}

.about-showcase-card p {
  width: min(100%, 372px);
  margin: 0;
  color: var(--brand-white);
  font-family: var(--font-menu);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
}

.featured-intro {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  text-align: center;
}

.featured-intro .section-eyebrow {
  margin-bottom: 25px;
}

.featured-intro h2 {
  font-size: 38px;
  line-height: 43px;
  white-space: nowrap;
}

.project-preview {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: var(--brand-black);
}

.project-preview-media {
  width: 100%;
  overflow: hidden;
}

.project-preview-media img {
  width: 100%;
  min-height: clamp(360px, 40vw, 660px);
  object-fit: cover;
  object-position: center;
}

.project-preview-info {
  width: 100%;
  min-height: 122px;
  margin-top: -1px;
  background: linear-gradient(rgba(0, 0, 0, .18), rgba(0, 0, 0, .18)), url("../images/textbg-image.webp") center / cover no-repeat;
}

.project-preview-inner {
  display: grid;
  grid-template-columns: minmax(76px, .8fr) minmax(190px, 1.2fr) minmax(40px, 1fr) auto minmax(40px, 1fr) minmax(86px, .75fr) minmax(100px, .8fr);
  align-items: center;
  column-gap: clamp(12px, 2vw, 30px);
  width: var(--container-lg);
  min-height: inherit;
  margin-inline: auto;
  padding-block: 22px;
}

.project-stat {
  display: grid;
  justify-items: start;
  gap: 12px;
  min-width: 0;
  color: #F8F8F8;
  text-align: left;
}

.project-stat strong {
  color: #F8F8F8;
  font-family: "Google Sans", var(--font-menu);
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 31px;
  white-space: nowrap;
}

.project-stat span {
  color: #F8F8F8;
  font-family: "Lexend Giga", var(--font-menu);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  white-space: nowrap;
}

.project-preview-btn {
  grid-column: 4;
  justify-self: center;
  min-width: 176px;
  min-height: 46px;
  padding: 13px 26px;
  background: var(--brand-maroon);
  font-size: 14px;
  letter-spacing: 5.5px;
}

.projects-current-info .project-preview-btn::before,
.projects-current-info .project-preview-btn::after {
  content: none;
}

.project-preview .project-stat:nth-of-type(1) {
  grid-column: 1;
}

.project-preview .project-stat:nth-of-type(2) {
  grid-column: 2;
}

.project-preview .project-stat:nth-of-type(3) {
  grid-column: 6;
}

.project-preview .project-stat:nth-of-type(4) {
  grid-column: 7;
}

.js-enabled .project-preview-media,
.js-enabled .project-preview-info {
  opacity: 0;
  transform: translateY(34px) scale(.98);
}

.js-enabled .project-preview-media.is-visible {
  animation: brandImageReveal 1s var(--ease) both;
}

.js-enabled .project-preview-info.is-visible {
  animation: brandTextReveal .9s var(--ease) .12s both;
}

.why-choose {
  overflow: hidden;
  background: var(--brand-cream);
}

.why-choose-inner {
  width: var(--container-lg);
  margin-inline: auto;
}

.why-choose-heading {
  text-align: center;
}

.why-choose-heading .section-eyebrow {
  color: var(--brand-black);
}

.why-choose-heading h2 {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.why-choose-grid {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px minmax(0, 1.1fr) 54px minmax(0, 1fr) 54px;
  align-items: start;
  justify-content: center;
  gap: clamp(10px, 1.4vw, 24px);
  width: 90vw;
  margin-top: 28px;
  margin-left: calc(50% - 45vw);
  margin-right: calc(50% - 45vw);
  padding-inline: clamp(18px, 3vw, 56px);
}

.why-card-stack {
  display: grid;
  gap: 24px;
}

.why-card {
  min-width: 0;
}

.why-card figure {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--brand-black);
  clip-path: inset(0 round 0);
  transform: translateZ(0);
  transition: clip-path .65s var(--ease), transform .65s var(--ease), box-shadow .65s var(--ease);
}

.why-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(.96) contrast(1);
  transition: opacity .45s var(--ease), transform .75s var(--ease), filter .75s var(--ease);
}

.why-card-shape {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.why-card figcaption {
  position: absolute;
  left: clamp(22px, 2.2vw, 34px);
  bottom: clamp(18px, 2vw, 30px);
  color: #F8F8F8;
  font-family: "Lexend Giga", var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
  letter-spacing: 3px;
  text-transform: capitalize;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .55);
}

.why-card:hover figure,
.why-card:focus-within figure {
  clip-path: inset(0 0 0 0 round 50% 50% 0 0);
  transform: translateY(-8px);
  box-shadow: 0 26px 56px rgba(81, 16, 28, .18);
}

.why-card:hover img,
.why-card:focus-within img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.04) brightness(1.02);
}

.why-card-design:hover .why-card-normal,
.why-card-design:focus-within .why-card-normal {
  opacity: 0;
}

.why-card-design:hover .why-card-shape,
.why-card-design:focus-within .why-card-shape {
  opacity: 1;
}

.why-card-construction {
  align-self: center;
  margin-bottom: 0;
}

.why-card-prime {
  align-self: center;
  margin-top: 0;
}

.why-side-label {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  color: rgba(0, 0, 0, .48);
  font-family: "Lexend Giga", var(--font-menu);
  font-size: 10px;
  font-weight: 400;
  line-height: 15px;
  letter-spacing: 5px;
  text-align: center;
  text-transform: uppercase;
}

.why-side-label span {
  display: inline-flex;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.why-side-label-line::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 1px;
  height: calc(50% - 116px);
  background: rgba(0, 0, 0, .12);
}

.why-side-label-end::before {
  top: 0;
  bottom: auto;
  height: calc(50% - 156px);
}

.js-enabled .why-choose-heading,
.js-enabled .why-card,
.js-enabled .why-side-label {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .why-choose-heading.is-visible,
.js-enabled .why-card.is-visible,
.js-enabled .why-side-label.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.insights-section {
  overflow: hidden;
  background: var(--brand-cream);
}

.blog-insights-section {
  background: var(--brand-maroon);
  color: #F8F8F8;
}

.insights-inner {
  width: var(--container-lg);
  margin-inline: auto;
}

.insights-heading {
  text-align: center;
}

.insights-heading .section-eyebrow {
  color: var(--brand-black);
}

.insights-heading h2 {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.blog-insights-section .insights-heading .section-eyebrow,
.blog-insights-section .insights-heading h2,
.blog-insights-section .insight-card a,
.blog-insights-section .insight-card h3,
.blog-insights-section .insight-card p,
.blog-insights-section .insight-card span {
  color: #F8F8F8;
}

.blog-insights-section .insights-heading h2 {
  font-size: 38px;
  line-height: 43px;
}

.blog-insights-section .insights-grid {
  margin-top: 56px;
}

.blog-insights-section .insight-card img {
  aspect-ratio: 1.45 / 1;
}

.blog-insights-section .insight-card:hover span,
.blog-insights-section .insight-card:focus-within span {
  color: var(--brand-tan);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(34px, 4.2vw, 56px);
  margin-top: 48px;
}

.insight-card a {
  display: grid;
  height: 100%;
  color: var(--brand-black);
}

.insight-card img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter .75s var(--ease), transform .75s var(--ease);
}

.insight-card h3 {
  margin: 30px 0 0;
  color: var(--brand-black);
  font-family: "Lexend Giga", var(--font-menu);
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
  letter-spacing: 1px;
}

.insight-card p {
  margin: 30px 0 0;
  color: var(--brand-black);
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.insight-card span {
  position: relative;
  display: inline-flex;
  width: max-content;
  margin-top: 30px;
  color: var(--brand-black);
  font-family: var(--font-menu);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-decoration: none;
  transform: translateY(0);
  transition: color .35s var(--ease), transform .35s var(--ease);
}

.insight-card span::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 1px;
  background: currentColor;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .4s var(--ease), background .35s var(--ease);
}

.insight-card:hover span,
.insight-card:focus-within span {
  color: var(--brand-maroon);
  transform: translateY(-2px);
}

.insight-card:hover span::after,
.insight-card:focus-within span::after {
  transform: scaleX(.42);
}

.insight-card:hover img,
.insight-card:focus-within img {
  filter: grayscale(.45) contrast(1.04);
  transform: scale(1.025);
}

.insights-actions {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.insights-btn {
  min-width: 148px;
  min-height: 48px;
  padding: 14px 28px;
  background: var(--brand-maroon);
  letter-spacing: 0;
}

.js-enabled .insights-heading,
.js-enabled .insight-card,
.js-enabled .insights-actions {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .insights-heading.is-visible,
.js-enabled .insight-card.is-visible,
.js-enabled .insights-actions.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.testimonials-section {
  overflow: hidden;
  background: #FFF;
}

.testimonials-section.section-pad {
  padding-block: 60px;
}

.testimonials-inner {
  width: var(--container-lg);
  margin-inline: auto;
}

.testimonials-heading {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: clamp(22px, 3.4vw, 60px);
  text-align: center;
}

.testimonials-heading > span {
  color: rgba(0, 0, 0, .05);
  font-family: var(--font-logo);
  font-size: 92px;
  font-weight: 700;
  line-height: .75;
}

.testimonials-heading > span:first-child {
  justify-self: end;
}

.testimonials-heading > span:last-child {
  justify-self: start;
}

.testimonials-heading .section-eyebrow {
  color: var(--brand-black);
}

.testimonials-heading h2 {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.home-page .testimonials-heading,
.home-page .testimonials-heading.is-visible {
  grid-template-columns: 1fr;
  justify-items: start;
  text-align: left;
}

.home-page .testimonials-heading > span {
  display: none;
}

.testimonials-slider {
  overflow: hidden;
  width: 100vw;
  margin: 48px calc(50% - 50vw) 0;
}

.testimonials-track {
  --testimonial-gap: 20px;
  --testimonial-card-width: calc((100vw - (var(--testimonial-gap) * 2)) / 3);
  display: flex;
  gap: var(--testimonial-gap);
  transform: translateX(var(--testimonial-offset, 0px));
  transition: transform .75s var(--ease);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 var(--testimonial-card-width);
  min-height: 440px;
  padding: clamp(42px, 5vw, 64px) clamp(34px, 4vw, 54px);
  background: #F1E4D9;
  color: var(--brand-black);
}

.testimonial-card:nth-child(even) {
  background: var(--brand-tan);
  color: #F8F8F8;
}

.testimonial-card h3 {
  margin: 0;
  color: #000;
  font-family: Kugile, serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.testimonial-card:nth-child(even) h3 {
  color: #F8F8F8;
}

.testimonial-card p {
  margin: 56px 0 0;
  color: currentColor;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
}

.testimonial-stars {
  display: flex;
  gap: 8px;
  margin-top: 42px;
  color: rgba(154, 101, 57, .28);
}

.testimonial-stars span {
  display: block;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  background: currentColor;
  mask: url("../images/star.svg") center / contain no-repeat;
  -webkit-mask: url("../images/star.svg") center / contain no-repeat;
}

.testimonial-card:nth-child(even) .testimonial-stars {
  color: rgba(248, 248, 248, .25);
}

.testimonial-card strong {
  display: block;
  margin-top: 52px;
  color: currentColor;
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 46px;
}

.testimonial-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid transparent;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 34px;
  cursor: pointer;
  transition: opacity .3s var(--ease), transform .3s var(--ease), filter .3s var(--ease);
}

.testimonial-arrow-prev {
  background-image: url("../images/left-arrow.svg");
}

.testimonial-arrow-next {
  background-image: url("../images/right-arrow.svg");
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  opacity: .75;
  transform: translateY(-1px);
}

.testimonial-arrow-prev:hover,
.testimonial-arrow-prev:focus-visible {
  transform: translateX(-3px);
}

.testimonial-arrow-next:hover,
.testimonial-arrow-next:focus-visible {
  transform: translateX(3px);
}

.js-enabled .testimonials-heading,
.js-enabled .testimonials-slider,
.js-enabled .testimonials-controls {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .testimonials-heading.is-visible,
.js-enabled .testimonials-slider.is-visible,
.js-enabled .testimonials-controls.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

@keyframes octaveMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes showcaseMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes aboutChooseLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@keyframes brandTextReveal {
  from {
    opacity: 0;
    transform: translateY(28px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes brandMarqueeReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes brandImageReveal {
  from {
    opacity: 0;
    transform: translateY(34px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes managementImageSlide {
  from {
    opacity: 0;
    transform: translateX(-52px) scale(.98);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes brandCardScale {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(.94);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }

  70% {
    opacity: 1;
    transform: translateY(0) scale(1.012);
    box-shadow: 0 24px 54px rgba(0, 0, 0, .16);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 18px 42px rgba(0, 0, 0, .12);
  }
}

.contact-section {
  background: #FFF;
}

.contact-inner {
  width: var(--container-lg);
  margin-inline: auto;
}

.contact-inner h2 {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-align: center;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 70px 64px;
  width: min(100%, 880px);
  margin: 60px auto 0;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(0, 0, 0, .72);
  font-family: var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form input {
  width: 100%;
  height: 34px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .18);
  border-radius: 0;
  background: transparent;
  color: var(--brand-black);
  font-family: var(--font-menu);
  font-size: 15px;
  outline: none;
  transition: border-color .3s var(--ease);
}

.contact-form input:focus {
  border-bottom-color: var(--brand-maroon);
}

.contact-submit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 146px;
  min-height: 48px;
  margin-top: 18px;
  padding: 14px 28px;
  background: var(--brand-maroon);
  letter-spacing: 0;
}

.js-enabled .contact-inner {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .contact-inner.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.contact-info-section {
  background: #FFF;
}

.contact-info-inner {
  width: var(--container-lg);
  margin-inline: auto;
  text-align: center;
}

.contact-info-inner p {
  margin: 0;
  color: var(--brand-black);
  font-family: var(--font-logo);
  font-size: 38px;
  font-weight: 400;
  line-height: 43px;
  text-transform: uppercase;
}

.contact-info-inner p + p {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.contact-info-inner a {
  transition: color .3s var(--ease);
}

.contact-info-inner a:hover,
.contact-info-inner a:focus-visible {
  color: var(--brand-maroon);
}

.js-enabled .contact-info-inner {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .contact-info-inner.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.site-footer {
  background: var(--brand-maroon);
  color: #F8F8F8;
}

.footer-container {
  display: grid;
  grid-template-columns: minmax(190px, .8fr) minmax(260px, 1fr) minmax(380px, 1.35fr);
  grid-template-areas:
    "brand office ."
    "copy project nav"
    ". . social";
  gap: clamp(34px, 4.2vw, 64px) clamp(42px, 5vw, 88px);
  align-items: start;
  width: var(--container-lg);
  margin-inline: auto;
  padding-block: clamp(58px, 6.6vw, 88px) 42px;
}

.footer-brand {
  grid-area: brand;
}

.footer-brand img {
  width: 156px;
}

.footer-address h2 {
  margin: 0 0 20px;
  color: #F8F8F8;
  font-family: Aileron, var(--font-menu);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.footer-address p,
.footer-copy p {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
}

.footer-office {
  grid-area: office;
}

.footer-project {
  grid-area: project;
}

.footer-copy {
  grid-area: copy;
  max-width: 260px;
}

.footer-nav {
  grid-area: nav;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 24px clamp(40px, 4.5vw, 72px);
  align-self: end;
}

.footer-nav a {
  color: #F8F8F8;
  text-align: center;
  font-family: var(--font-menu);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 4.62px;
  text-transform: uppercase;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: color .3s var(--ease), opacity .3s var(--ease);
}

.footer-nav a:hover,
.footer-nav a:focus-visible {
  opacity: .72;
}

.footer-social {
  grid-area: social;
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F8F8F8;
  color: var(--brand-maroon);
  font-size: 17px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.footer-social a:hover,
.footer-social a:focus-visible {
  opacity: .78;
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(141, 27, 48, .1);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  width: var(--container-lg);
  margin-inline: auto;
  padding-block: 14px;
}

.footer-bottom p {
  margin: 0;
  color: #F8F8F8;
  font-family: var(--font-menu);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.quick-contact {
  position: fixed;
  right: 24px;
  bottom: 18px;
  z-index: 1100;
  display: grid;
  gap: 10px;
}

.quick-contact-link {
  display: inline-grid;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #FFF;
  font-size: 21px;
  line-height: 1;
  text-decoration: none;
  place-items: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.quick-contact-whatsapp {
  background: #25D366;
}

.quick-contact-call {
  background: #455E2B;
}

.quick-contact-link:hover,
.quick-contact-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .22);
}

.nisarga-sticky-enquiry {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 168px;
  padding: 18px 11px;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #455E2B;
  color: #F8F8F8;
  font-family: "Google Sans", var(--font-menu);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.4px;
  line-height: 1;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: translateY(-50%) rotate(180deg);
  cursor: pointer;
  box-shadow: -10px 18px 34px rgba(0, 0, 0, .2);
  transition: background .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.nisarga-sticky-enquiry:hover,
.nisarga-sticky-enquiry:focus-visible {
  background: #2f431e;
  box-shadow: -12px 22px 42px rgba(0, 0, 0, .24);
  transform: translateY(-50%) rotate(180deg) translateY(2px);
}

@media (max-width: 480px) {
  .quick-contact {
    right: 16px;
    bottom: 12px;
    gap: 8px;
  }

  .quick-contact-link {
    width: 40px;
    height: 40px;
    font-size: 19px;
  }

  .nisarga-sticky-enquiry {
    min-width: 38px;
    min-height: 136px;
    padding: 15px 9px;
    border-radius: 0 7px 7px 0;
    font-size: 10px;
    letter-spacing: 1.8px;
  }
}

.nisarga-page .site-header:not(.is-scrolled) .nav-link {
  color: #F8F8F8;
}

.nisarga-page .site-header:not(.is-scrolled) .nav-link::after {
  background: #F8F8F8;
}

.nisarga-page .site-header:not(.is-scrolled) .nav-link:hover,
.nisarga-page .site-header:not(.is-scrolled) .nav-link:focus-visible,
.nisarga-page .site-header:not(.is-scrolled) .nav-link.is-active {
  color: #F8F8F8;
}

.nisarga-page .site-header:not(.is-scrolled) .brand-logo-default {
  opacity: 0;
}

.nisarga-page .site-header:not(.is-scrolled) .brand-logo-light {
  opacity: 1;
}

.nisarga-page .site-header:not(.is-scrolled) .menu-toggle {
  border-color: rgba(248, 248, 248, .45);
}

.nisarga-page .site-header:not(.is-scrolled) .menu-toggle span {
  background: #F8F8F8;
}

.nisarga-page .site-header.is-scrolled {
  background: rgba(69, 94, 43, .76);
  border-bottom: 1px solid rgba(248, 248, 248, .16);
  box-shadow: 0 16px 42px rgba(0, 0, 0, .14);
  backdrop-filter: blur(18px) saturate(145%);
  -webkit-backdrop-filter: blur(18px) saturate(145%);
}

.nisarga-page .site-header.is-scrolled .nav-link,
.nisarga-page .site-header.is-scrolled .nav-link:hover,
.nisarga-page .site-header.is-scrolled .nav-link:focus-visible,
.nisarga-page .site-header.is-scrolled .nav-link.is-active {
  color: #F8F8F8;
}

.nisarga-page .site-header.is-scrolled .nav-link::after {
  background: #F8F8F8;
}

.nisarga-page .site-header.is-scrolled .brand-logo-default {
  opacity: 0;
}

.nisarga-page .site-header.is-scrolled .brand-logo-light {
  opacity: 1;
}

.nisarga-page .site-header.is-scrolled .menu-toggle {
  border-color: rgba(248, 248, 248, .45);
}

.nisarga-page .site-header.is-scrolled .menu-toggle span {
  background: #F8F8F8;
}

.nisarga-hero {
  position: relative;
  z-index: 3;
  display: grid;
  min-height: 560px;
  height: 86svh;
  overflow: visible;
  place-items: center;
  background: url("../images/nisarga-banner.png") center / cover no-repeat;
  isolation: isolate;
}

.nisarga-hero-top {
  display: none;
}

.nisarga-hero-top::before {
  content: none;
}

.nisarga-hero-top::after {
  content: none;
}

.nisarga-leaf-wrap {
  position: absolute;
  left: 50%;
  top: 90%;
  z-index: 10;
  width: clamp(250px, 20vw, 340px);
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, .22));
}

.nisarga-leaf-wrap img {
  width: 100%;
  animation: nisargaLeafBreath 7s ease-in-out infinite;
}

.nisarga-intro-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-top: clamp(54px, 7vw, 120px) solid #fff;
  background: #FFF;
  isolation: isolate;
}

.nisarga-intro-inner {
  position: absolute;
  top: clamp(40px, 5.5vw, 84px);
  left: 50%;
  z-index: 2;
  width: var(--container-lg);
  padding-block: 0;
  transform: translateX(-50%);
}

.nisarga-project-logo {
  display: flex;
  justify-content: center;
}

.nisarga-project-logo img {
  width: clamp(150px, 16vw, 244px);
}

.nisarga-stats {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(34px, 4vw, 58px);
  border-top: 1px solid rgba(0, 0, 0, .12);
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.nisarga-stat {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 18px clamp(18px, 2.4vw, 34px);
  border-right: 1px solid rgba(0, 0, 0, .1);
  color: #000;
  text-align: center;
}

.nisarga-stat:last-child {
  border-right: 0;
}

.nisarga-stat strong {
  color: #000;
  font-family: "Google Sans", var(--font-menu);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.nisarga-stat span {
  color: #000;
  font-family: "Lexend Giga", var(--font-menu);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.4px;
}

.nisarga-intro-copy {
  width: min(100%, 920px);
  margin: clamp(58px, 6vw, 84px) auto 0;
  color: #000;
  text-align: center;
}

.nisarga-intro-copy h2 {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: Kugile, var(--font-logo);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0;
}

.nisarga-intro-copy p {
  width: min(100%, 640px);
  margin: clamp(28px, 3vw, 42px) auto 0;
  color: #000;
  font-family: "Google Sans", var(--font-menu);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-align: center;
}

.nisarga-intro-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.nisarga-btn-green {
  background: #455E2B;
}

.nisarga-btn-dark {
  background: #000;
}

.nisarga-elevation {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.nisarga-elevation img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.nisarga-location-hero {
  position: relative;
  z-index: 2;
  margin-top: clamp(-320px, -17vw, -220px);
  overflow: hidden;
  background: transparent;
  color: #F8F8F8;
}

.nisarga-location-leaves {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  pointer-events: none;
}

.nisarga-location-leaves img {
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: center top;
}

.nisarga-location-hero::after {
  content: none;
}

.nisarga-location-icon {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 2;
  width: clamp(120px, 14.5vw, 212px);
  transform: translate(-50%, -50%);
}

.nisarga-location-heading {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: -8px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: var(--container-lg);
  margin: 0;
  transform: translateX(-50%);
}

.nisarga-location-heading h2 {
  margin: 0;
  color: #F8F8F8;
  text-align: center;
  font-family: Kugile, var(--font-logo);
  font-size: clamp(56px, 7vw, 96px);
  font-style: normal;
  font-weight: 400;
  line-height: .78;
  text-transform: uppercase;
  white-space: nowrap;
}

.nisarga-connectivity-section {
  display: grid;
  align-items: stretch;
  min-height: 100svh;
  padding-block: 60px 40px;
  background: #fff;
  color: #000;
}

.nisarga-connectivity-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  margin-inline: auto;
  border-top: 1px solid rgba(0, 0, 0, .1);
  border-left: 1px solid rgba(0, 0, 0, .1);
}

.nisarga-connectivity-card {
  display: grid;
  align-content: start;
  gap: clamp(24px, 2.4vw, 36px);
  min-height: clamp(300px, 24vw, 390px);
  padding: clamp(48px, 5vw, 78px) clamp(38px, 5vw, 84px);
  border-right: 1px solid rgba(0, 0, 0, .1);
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.nisarga-connectivity-card h3 {
  margin: 0;
  color: #000;
  text-align: left;
  font-family: Kugile, var(--font-logo);
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.nisarga-connectivity-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nisarga-connectivity-card li {
  color: #000;
  font-family: "Google Sans", var(--font-menu);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.nisarga-connectivity-card li::before {
  content: "+ ";
}

.js-enabled .nisarga-connectivity-card {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-connectivity-card.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.js-enabled .nisarga-connectivity-card:nth-child(2).is-visible {
  animation-delay: .08s;
}

.js-enabled .nisarga-connectivity-card:nth-child(3).is-visible {
  animation-delay: .16s;
}

.js-enabled .nisarga-connectivity-card:nth-child(4).is-visible {
  animation-delay: .04s;
}

.js-enabled .nisarga-connectivity-card:nth-child(5).is-visible {
  animation-delay: .12s;
}

.js-enabled .nisarga-connectivity-card:nth-child(6).is-visible {
  animation-delay: .2s;
}

.nisarga-floor-section {
  overflow: hidden;
  background: #fff;
  padding-block: 0;
}

.nisarga-floor-heading {
  width: var(--container-lg);
  margin-inline: auto;
  padding-bottom: 18px;
}

.nisarga-floor-heading h2 {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: Kugile, var(--font-logo);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.nisarga-floor-media {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.nisarga-floor-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.js-enabled .nisarga-floor-heading,
.js-enabled .nisarga-floor-media {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-floor-heading.is-visible,
.js-enabled .nisarga-floor-media.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.nisarga-plan-section {
  overflow: hidden;
  background: transparent;
}

.nisarga-plan-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: var(--container-lg);
  margin-inline: auto;
  min-height: 92px;
  align-items: center;
  padding-block: 25px;
}

.nisarga-plan-tab {
  display: grid;
  align-content: center;
  gap: 4px;
  min-height: 54px;
  padding: 10px clamp(12px, 1.5vw, 24px);
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, .1);
  background: transparent;
  color: #000;
  font-family: "Google Sans", var(--font-menu);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  text-align: left;
  text-transform: none;
  cursor: pointer;
  opacity: .4;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.nisarga-plan-tab:last-child {
  border-right: 0;
}

.nisarga-plan-tab.is-active,
.nisarga-plan-tab:hover,
.nisarga-plan-tab:focus-visible {
  opacity: 1;
}

.nisarga-plan-tab strong {
  font: inherit;
  text-transform: uppercase;
}

.nisarga-plan-panel {
  display: grid;
  align-items: center;
  min-height: 0;
  background: #7B815B;
  color: #F8F8F8;
}

.nisarga-plan-panel[hidden] {
  display: none;
}

.nisarga-plan-inner {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 10px;
  width: var(--container-lg);
  margin-inline: auto;
  padding-block: 0;
}

.nisarga-plan-copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: center;
  align-items: center;
  column-gap: clamp(28px, 3.4vw, 58px);
  justify-items: start;
  min-width: 0;
}

.nisarga-plan-tree {
  grid-column: 1;
  width: clamp(76px, 6vw, 112px);
  margin: 0;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, .22));
}

.nisarga-plan-title {
  grid-column: 2;
  display: grid;
  gap: 8px;
  margin: 0;
}

.nisarga-plan-title h2,
.nisarga-plan-title p {
  margin: 0;
  color: #F8F8F8;
  font-family: Kugile, var(--font-logo);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
}

.nisarga-plan-title p {
  text-transform: uppercase;
}

.nisarga-area-statement {
  grid-column: 1 / -1;
  width: min(100%, 520px);
  margin-top: clamp(46px, 5vw, 78px);
}

.nisarga-area-statement h3 {
  margin: 0 0 24px;
  color: #F8F8F8;
  font-family: "Google Sans", var(--font-menu);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.nisarga-area-statement dl {
  display: grid;
  margin: 0;
}

.nisarga-area-statement dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid rgba(248, 248, 248, .12);
}

.nisarga-area-statement dl div:last-child {
  border-bottom: 0;
}

.nisarga-area-statement dt,
.nisarga-area-statement dd {
  margin: 0;
  color: #F8F8F8;
  font-family: "Google Sans", var(--font-menu);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 58px;
}

.nisarga-plan-media {
  min-width: 0;
  margin: 0;
}

.nisarga-plan-image-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.nisarga-plan-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.js-enabled .nisarga-plan-tabs,
.js-enabled .nisarga-plan-copy,
.js-enabled .nisarga-plan-media {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-plan-tabs.is-visible,
.js-enabled .nisarga-plan-copy.is-visible,
.js-enabled .nisarga-plan-media.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.nisarga-viewsion-section {
  overflow: hidden;
  background: #F8F8F8;
}

.nisarga-viewsion-inner {
  display: grid;
  grid-template-columns: minmax(220px, .72fr) minmax(420px, 1.18fr) minmax(220px, .72fr);
  align-items: stretch;
  width: var(--container-lg);
  min-height: clamp(560px, 58vw, 690px);
  margin-inline: auto;
}

.nisarga-viewsion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(34px, 4vw, 58px);
  min-width: 0;
  padding: 0;
  color: #000;
  text-align: center;
}

.nisarga-viewsion-copy h2 {
  margin: 0;
  color: #000;
  font-family: Kugile, var(--font-logo);
  font-size: clamp(28px, 2.8vw, 42px);
  font-style: normal;
  font-weight: 400;
  line-height: .92;
  text-align: center;
  text-transform: uppercase;
}

.nisarga-viewsion-copy p,
.nisarga-viewsion-content p {
  margin: 0;
  font-family: "Google Sans", var(--font-menu);
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
}

.nisarga-viewsion-copy p {
  width: min(100%, 330px);
  color: #000;
  text-align: center;
}

.nisarga-viewsion-copy-left {
  align-items: flex-start;
  padding-right: clamp(28px, 3.8vw, 56px);
  text-align: left;
}

.nisarga-viewsion-copy-left h2,
.nisarga-viewsion-copy-left p {
  text-align: left;
}

.nisarga-viewsion-copy-left h2 {
  width: 100%;
  text-align: center;
}

.nisarga-viewsion-copy-left.is-visible p {
  text-align: center;
}

.nisarga-viewsion-copy-right {
  padding-left: clamp(28px, 3.8vw, 56px);
}

.nisarga-viewsion-center {
  position: relative;
  min-width: 0;
  min-height: inherit;
  margin: 0;
  overflow: hidden;
  color: #F8F8F8;
  isolation: isolate;
}

.nisarga-viewsion-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nisarga-viewsion-center::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .12), rgba(0, 0, 0, .22) 48%, rgba(0, 0, 0, .34));
  pointer-events: none;
}

.nisarga-viewsion-content {
  width: min(calc(100% - 72px), 430px);
  margin: 0 auto;
  padding-top: clamp(58px, 6.4vw, 84px);
  text-align: center;
}

.nisarga-viewsion-content h2 {
  margin: 0 0 18px;
  color: #F8F8F8;
  font-family: Kugile, var(--font-logo);
  font-size: clamp(30px, 3.2vw, 46px);
  font-style: normal;
  font-weight: 400;
  line-height: .95;
  text-align: center;
  text-transform: uppercase;
}

.nisarga-viewsion-content p {
  color: #F8F8F8;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
}

.nisarga-viewsion-logo {
  position: absolute;
  left: 50%;
  bottom: clamp(54px, 6vw, 78px);
  width: min(44%, 300px);
  max-height: 336.487px;
  object-fit: contain;
  opacity: .92;
  filter: brightness(0) invert(1) drop-shadow(0 18px 36px rgba(0, 0, 0, .34));
  transform: translateX(-50%);
}

.js-enabled .nisarga-viewsion-copy,
.js-enabled .nisarga-viewsion-center {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-viewsion-copy.is-visible,
.js-enabled .nisarga-viewsion-center.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

@media (min-width: 1320px) {
  .nisarga-viewsion-copy h2 {
    font-size: 48px;
  }

  .nisarga-viewsion-copy p {
    width: min(100%, 390px);
    font-size: 14px;
    line-height: 22px;
  }
}

.nisarga-amenities-section {
  overflow: hidden;
  background: #FFF;
}

.nisarga-amenities-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 470px));
  justify-content: center;
  align-items: center;
  gap: 0;
  width: var(--container-lg);
  min-height: 136px;
  margin-inline: auto;
  background: #FFF;
}

.nisarga-amenities-tab {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 58px;
  padding: 0 32px;
  border: 0;
  border-right: 2px solid rgba(0, 0, 0, .84);
  background: #FFF;
  color: rgba(0, 0, 0, .25);
  cursor: pointer;
  transition: color .3s var(--ease), opacity .3s var(--ease);
}

.nisarga-amenities-tab:last-child {
  border-right: 0;
}

.nisarga-amenities-tab span {
  font-family: "Google Sans", var(--font-menu);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
}

.nisarga-amenities-tab strong {
  color: currentColor;
  font-family: Kugile, var(--font-logo);
  font-size: clamp(22px, 1.8vw, 26px);
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  white-space: nowrap;
  text-align: center;
}

.nisarga-amenities-tab.is-active,
.nisarga-amenities-tab:hover,
.nisarga-amenities-tab:focus-visible {
  color: #000;
}

.nisarga-amenities-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.nisarga-amenities-track {
  display: flex;
  transform: translateX(var(--amenities-offset, 0));
  transition: transform .75s var(--ease);
  will-change: transform;
}

.nisarga-amenities-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 0;
  margin: 0;
  color: #F8F8F8;
}

.nisarga-amenities-slide.is-active {
  z-index: 1;
}

.nisarga-amenities-preview {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #000;
  color: inherit;
  cursor: zoom-in;
  text-align: inherit;
}

.nisarga-amenities-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .24);
  pointer-events: none;
}

.nisarga-amenities-preview img {
  display: block;
  width: 100%;
  min-height: clamp(430px, 45vw, 650px);
  object-fit: cover;
  object-position: center;
  transition: transform .75s var(--ease);
}

.nisarga-amenities-preview:hover img,
.nisarga-amenities-preview:focus-visible img {
  transform: scale(1.025);
}

.nisarga-amenities-caption {
  position: absolute;
  left: 50%;
  bottom: 72px;
  z-index: 1;
  min-width: 148px;
  padding: 18px 34px;
  background: rgba(0, 0, 0, .72);
  color: #F8F8F8;
  font-family: "Google Sans", var(--font-menu);
  font-size: 12px;
  font-weight: 400;
  line-height: 14px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.nisarga-amenity-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.nisarga-amenity-modal[hidden] {
  display: none;
}

.amenity-modal-open {
  overflow: hidden;
}

.nisarga-amenity-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, .78);
  cursor: zoom-out;
}

.nisarga-amenity-modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 48px));
  background: #050505;
  box-shadow: 0 24px 72px rgba(0, 0, 0, .38);
}

.nisarga-amenity-modal-panel img {
  display: block;
  width: 100%;
  max-height: min(62vh, 460px);
  object-fit: contain;
  background: #050505;
}

.nisarga-amenity-modal-title {
  padding: 16px 22px;
  color: #F8F8F8;
  font-family: "Google Sans", var(--font-menu);
  font-size: 13px;
  line-height: 18px;
  letter-spacing: 2.6px;
  text-align: center;
  text-transform: uppercase;
}

.nisarga-amenity-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .44);
  border-radius: 50%;
  background: rgba(0, 0, 0, .58);
  cursor: pointer;
}

.nisarga-amenity-modal-close::before,
.nisarga-amenity-modal-close::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: #FFF;
}

.nisarga-amenity-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nisarga-amenity-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nisarga-amenities-controls {
  position: absolute;
  left: 50%;
  bottom: 32px;
  z-index: 2;
  display: flex;
  gap: 28px;
  transform: translateX(-50%);
}

.nisarga-amenities-arrow {
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 22px;
  cursor: pointer;
  filter: invert(1);
  opacity: .9;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.nisarga-amenities-prev {
  background-image: url("../images/left-arrow.svg");
}

.nisarga-amenities-next {
  background-image: url("../images/right-arrow.svg");
}

.nisarga-amenities-arrow:hover,
.nisarga-amenities-arrow:focus-visible {
  opacity: .65;
}

.js-enabled .nisarga-amenities-tabs,
.js-enabled .nisarga-amenities-slider {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-amenities-tabs.is-visible,
.js-enabled .nisarga-amenities-slider.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.nisarga-enquiry-section {
  position: relative;
  overflow: hidden;
  background: #F8F8F8;
  padding-block: clamp(112px, 10vw, 156px);
}

.nisarga-enquiry-inner {
  position: relative;
  z-index: 1;
  width: var(--container-lg);
  margin-inline: auto;
}

.nisarga-enquiry-inner h2 {
  margin: 0 0 clamp(48px, 5vw, 68px);
  color: #000;
  font-family: Kugile, var(--font-logo);
  font-size: clamp(30px, 3vw, 44px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.nisarga-enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px 64px;
  width: min(100%, 880px);
  margin-inline: auto;
}

.nisarga-enquiry-form label {
  display: grid;
  gap: 8px;
}

.nisarga-enquiry-form span {
  color: rgba(0, 0, 0, .72);
  font-family: "Google Sans", var(--font-menu);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
}

.nisarga-enquiry-form input {
  width: 100%;
  height: 30px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, .16);
  border-radius: 0;
  background: transparent;
  color: #000;
  font-family: "Google Sans", var(--font-menu);
  font-size: 14px;
  outline: none;
  transition: border-color .3s var(--ease);
}

.nisarga-enquiry-form input:focus {
  border-bottom-color: #000;
}

.nisarga-enquiry-submit {
  grid-column: 1 / -1;
  justify-self: center;
  min-width: 118px;
  min-height: 38px;
  margin-top: 6px;
  border: 0;
  background: #000;
  color: #F8F8F8;
  font-family: "Google Sans", var(--font-menu);
  font-size: 11px;
  font-weight: 400;
  line-height: 1.4;
  cursor: pointer;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.nisarga-enquiry-submit:hover,
.nisarga-enquiry-submit:focus-visible {
  opacity: .78;
  transform: translateY(-2px);
}

.nisarga-enquiry-icon {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: brightness(0);
  opacity: .035;
}

.nisarga-enquiry-icon-left {
  left: 0;
  bottom: -6px;
  width: clamp(92px, 9vw, 145px);
}

.nisarga-enquiry-icon-right {
  right: 0;
  bottom: 0;
  width: clamp(150px, 13vw, 230px);
}

.js-enabled .nisarga-enquiry-inner {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-enquiry-inner.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.nisarga-interiors-section {
  overflow: hidden;
  background: #FFF;
  padding-block: clamp(72px, 7vw, 106px) clamp(50px, 5vw, 76px);
}

.nisarga-interiors-heading {
  width: var(--container-lg);
  margin-inline: auto;
  text-align: center;
}

.nisarga-interiors-heading p {
  margin: 0 0 14px;
  color: #000;
  font-family: "Google Sans", var(--font-menu);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}

.nisarga-interiors-heading h2 {
  margin: 0;
  color: #000;
  font-family: Kugile, var(--font-logo);
  font-size: clamp(32px, 3.4vw, 48px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.nisarga-interiors-slider {
  width: 100vw;
  margin: 34px calc(50% - 50vw) 0;
  overflow: hidden;
}

.nisarga-interiors-track {
  --interiors-gap: 28px;
  --interiors-half-gap: 14px;
  --interiors-direction: normal;
  display: flex;
  align-items: stretch;
  gap: var(--interiors-gap);
  width: max-content;
  animation: nisargaInteriorsLoop 34s linear infinite;
  animation-direction: var(--interiors-direction);
  will-change: transform;
}

.nisarga-interiors-slider:hover .nisarga-interiors-track,
.nisarga-interiors-slider:focus-within .nisarga-interiors-track {
  animation-play-state: paused;
}

.nisarga-interiors-slide {
  flex: 0 0 clamp(420px, 33vw, 620px);
  min-width: 0;
  margin: 0;
  overflow: hidden;
}

.nisarga-interiors-slide img {
  width: 100%;
  height: clamp(300px, 32vw, 460px);
  object-fit: cover;
  object-position: center;
  transition: transform .8s var(--ease);
}

.nisarga-interiors-slide:hover img,
.nisarga-interiors-slide:focus-within img {
  transform: scale(1.025);
}

.nisarga-interiors-controls {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 26px;
}

.nisarga-interiors-arrow {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 14px 26px;
  cursor: pointer;
  opacity: .86;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

.nisarga-interiors-prev {
  background-image: url("../images/left-arrow.svg");
}

.nisarga-interiors-next {
  background-image: url("../images/right-arrow.svg");
}

.nisarga-interiors-arrow:hover,
.nisarga-interiors-arrow:focus-visible {
  opacity: .62;
}

.js-enabled .nisarga-interiors-heading,
.js-enabled .nisarga-interiors-slider,
.js-enabled .nisarga-interiors-controls {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-interiors-heading.is-visible,
.js-enabled .nisarga-interiors-slider.is-visible,
.js-enabled .nisarga-interiors-controls.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

@keyframes nisargaInteriorsLoop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--interiors-half-gap)));
  }
}

.nisarga-map-section {
  overflow: hidden;
  background: #FFF;
}

.nisarga-map-inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.nisarga-map-inner h2 {
  position: absolute;
  top: clamp(78px, 7vw, 112px);
  right: clamp(58px, 6vw, 96px);
  z-index: 1;
  margin: 0;
  color: #000;
  font-family: Kugile, var(--font-logo);
  font-size: clamp(30px, 3vw, 44px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.nisarga-map-media {
  margin: 0;
  overflow: hidden;
}

.nisarga-map-media img {
  width: 100%;
  height: auto;
  min-height: clamp(560px, 61vw, 810px);
  object-fit: cover;
  object-position: center;
}

.js-enabled .nisarga-map-inner {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-map-inner.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.nisarga-master-plan-section {
  overflow: hidden;
  background: #FFF;
}

.nisarga-master-plan-inner {
  position: relative;
  width: 100%;
  margin-inline: auto;
}

.nisarga-master-plan-inner h2 {
  position: absolute;
  top: clamp(64px, 6.4vw, 104px);
  left: clamp(42px, 5.2vw, 92px);
  z-index: 1;
  margin: 0;
  color: #111;
  font-family: Kugile, var(--font-logo);
  font-size: clamp(30px, 3vw, 44px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.nisarga-master-plan-media {
  margin: 0;
  overflow: hidden;
  background: #FFF;
}

.nisarga-master-plan-media img {
  display: block;
  width: 100%;
  height: auto;
}

.js-enabled .nisarga-master-plan-inner {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-master-plan-inner.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.nisarga-legend-section {
  position: relative;
  display: grid;
  overflow: hidden;
  padding: clamp(56px, 8vh, 104px) clamp(24px, 5vw, 80px);
  background: #EDF2E7;
  place-items: center;
  isolation: isolate;
}

.nisarga-legend-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/patern.png");
  background-position: center;
  background-size: cover;
  opacity: .1;
  pointer-events: none;
}

.nisarga-legend-inner {
  width: min(100%, 1510px);
  margin-inline: auto;
}

.nisarga-legend-inner h2 {
  margin: 0 0 clamp(28px, 3.8vw, 56px);
  color: #111;
  font-family: Kugile, var(--font-logo);
  font-size: clamp(26px, 2.5vw, 38px);
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.nisarga-legend-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(36px, 5vw, 90px);
}

.nisarga-legend-list {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: #111;
  font-family: "Google Sans", var(--font-menu);
  font-size: 14px;
  font-weight: 400;
  line-height: 19px;
}

.nisarga-legend-list li {
  padding-left: 2px;
}

.js-enabled .nisarga-legend-inner {
  opacity: 0;
  transform: translateY(32px) scale(.98);
}

.js-enabled .nisarga-legend-inner.is-visible {
  animation: brandTextReveal .9s var(--ease) both;
}

.nisarga-testimonials-section {
  background: #FFF;
}

.nisarga-testimonials-section.section-pad {
  padding-block: clamp(56px, 7vw, 92px);
}

.nisarga-testimonials-section .testimonials-heading > span {
  color: rgba(69, 94, 43, .08);
  font-family: Kugile, var(--font-logo);
  font-weight: 400;
}

.nisarga-testimonials-section .testimonials-heading .section-eyebrow {
  color: #455E2B;
  font-family: "Google Sans", var(--font-menu);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3.8px;
}

.nisarga-testimonials-section .testimonials-heading h2 {
  color: #111;
  font-family: Kugile, var(--font-logo);
}

.nisarga-testimonials-section .testimonial-card {
  background: #EDF2E7;
  color: #111;
}

.nisarga-testimonials-section .testimonial-card:nth-child(even) {
  background: #455E2B;
  color: #F8F8F8;
}

.nisarga-testimonials-section .testimonial-card h3 {
  color: currentColor;
  font-family: Kugile, var(--font-logo);
}

.nisarga-testimonials-section .testimonial-card p,
.nisarga-testimonials-section .testimonial-card strong {
  font-family: "Google Sans", var(--font-menu);
}

.nisarga-testimonials-section .testimonial-stars {
  color: rgba(69, 94, 43, .22);
}

.nisarga-testimonials-section .testimonial-card:nth-child(even) .testimonial-stars {
  color: rgba(248, 248, 248, .25);
}

.nisarga-popup {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  padding: 18px;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition: opacity .28s var(--ease);
}

.nisarga-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nisarga-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .42);
  backdrop-filter: blur(4px);
}

.nisarga-popup-dialog {
  position: relative;
  width: min(100%, 340px);
  padding: 24px 22px 22px;
  background: #EDF2E7;
  color: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .24);
  transform: translateY(14px) scale(.96);
  transition: transform .28s var(--ease);
}

.nisarga-popup.is-open .nisarga-popup-dialog {
  transform: translateY(0) scale(1);
}

.nisarga-popup-close {
  position: absolute;
  top: 8px;
  right: 10px;
  display: grid;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #455E2B;
  font-size: 25px;
  line-height: 1;
  cursor: pointer;
  place-items: center;
}

.nisarga-popup-dialog h2 {
  margin: 0 34px 18px 0;
  color: #455E2B;
  font-family: Kugile, var(--font-logo);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.08;
  text-transform: uppercase;
}

.nisarga-popup-form {
  display: grid;
  gap: 12px;
}

.nisarga-popup-form label {
  display: grid;
  gap: 5px;
}

.nisarga-popup-form span {
  color: #455E2B;
  font-family: "Google Sans", var(--font-menu);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}

.nisarga-popup-form input {
  width: 100%;
  height: 38px;
  border: 1px solid rgba(69, 94, 43, .28);
  border-radius: 0;
  background: rgba(255, 255, 255, .72);
  color: #111;
  font-family: "Google Sans", var(--font-menu);
  font-size: 14px;
  outline: none;
  padding: 8px 10px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}

.nisarga-popup-form input:focus {
  border-color: #455E2B;
  background: #FFF;
}

.nisarga-popup-submit {
  min-height: 40px;
  margin-top: 4px;
  border: 0;
  background: #455E2B;
  color: #F8F8F8;
  font-family: "Google Sans", var(--font-menu);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease);
}

.nisarga-popup-submit:hover,
.nisarga-popup-submit:focus-visible {
  background: #2f431e;
  transform: translateY(-1px);
}

.nisarga-image-popup {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: grid;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  place-items: center;
  transition: opacity .28s var(--ease);
}

.nisarga-image-popup.is-open {
  opacity: 1;
  pointer-events: auto;
}

.nisarga-image-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(5px);
}

.nisarga-image-popup-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(calc(100vw - 40px), 760px);
  max-height: calc(100svh - 40px);
  overflow: hidden;
  background: #F8F8F8;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
  place-items: center;
}

.nisarga-image-popup-dialog img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100svh - 76px);
  object-fit: contain;
}

.nisarga-image-popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .7);
  color: #FFF;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  place-items: center;
}

@media (max-width: 480px) {
  .nisarga-image-popup {
    padding: 14px;
  }

  .nisarga-image-popup-dialog {
    width: min(calc(100vw - 28px), 360px);
    max-height: calc(100svh - 28px);
  }

  .nisarga-image-popup-dialog img {
    max-height: calc(100svh - 64px);
  }
}

@keyframes nisargaLeafFloat {
  0%, 100% {
    transform: translate(-50%, -50%) translateY(0) rotate(-1.5deg);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-14px) rotate(1.5deg);
  }
}

@keyframes nisargaLeafBreath {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.055);
  }
}

@keyframes nisargaWave {
  from {
    transform: translateX(-2%) translateY(0) rotate(-.8deg);
  }

  to {
    transform: translateX(2%) translateY(10px) rotate(.8deg);
  }
}

@keyframes nisargaSoftWave {
  from {
    transform: translateX(-2%) translateY(0) rotate(.6deg);
  }

  to {
    transform: translateX(2%) translateY(8px) rotate(-.6deg);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-spacing: 40px;
  }

  .header-container {
    width: var(--container-md);
    min-height: 104px;
  }

  .main-nav {
    gap: 18px;
  }

  .main-nav:first-of-type {
    padding-right: 30px;
  }

  .main-nav:last-of-type {
    padding-left: 30px;
  }

  .nav-link {
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 3px;
  }

  .brand-logo {
    width: 108px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 84px;
  }

  .about-hero-inner {
    width: var(--container-md);
    padding-bottom: 72px;
  }

  .about-hero-content {
    width: min(100%, 520px);
    padding-top: 0;
  }

  .about-hero h1 {
    margin-bottom: 38px;
    font-size: 26px;
    line-height: 32px;
  }

  .about-hero-content p:not(.about-hero-kicker) {
    font-size: 14px;
    line-height: 24px;
  }

  .about-hero-scroll {
    margin-top: 30px;
  }

  .projects-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    width: var(--container-md);
    gap: 42px;
    padding-bottom: 42px;
  }

  .projects-hero h1 {
    max-width: 680px;
    font-size: clamp(38px, 6vw, 56px);
    line-height: 1.1;
  }

  .projects-hero-copy p {
    font-size: 13px;
    line-height: 22px;
  }

  .blog-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    width: var(--container-md);
    gap: 42px;
    padding-bottom: 42px;
  }

  .blog-hero h1 {
    max-width: 680px;
    font-size: clamp(38px, 6vw, 56px);
    line-height: 1.1;
  }

  .blog-hero-copy p {
    font-size: 13px;
    line-height: 22px;
  }

  .contact-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    width: var(--container-md);
    gap: 42px;
    padding-bottom: 42px;
  }

  .contact-hero h1 {
    max-width: 680px;
    font-size: clamp(38px, 6vw, 56px);
    line-height: 1.1;
  }

  .contact-hero-copy p {
    font-size: 13px;
    line-height: 22px;
  }

  .contact-office-section {
    grid-template-columns: minmax(0, 47vw) minmax(0, 1fr);
    min-height: 460px;
  }

  .contact-office-media img {
    min-height: 460px;
  }

  .contact-office-content {
    width: min(100% - 54px, 390px);
  }

  .contact-office-content .section-eyebrow {
    margin-bottom: 22px;
    font-size: 12px;
    letter-spacing: 4px;
  }

  .contact-office-content h2 {
    font-size: 21px;
    line-height: 26px;
  }

  .contact-office-content p:not(.section-eyebrow) {
    margin-top: 46px;
    font-size: 12px;
    line-height: 20px;
  }

  .contact-office-link {
    margin-top: 46px;
    font-size: 9px;
    letter-spacing: 4px;
  }

  .contact-map-section {
    padding-block: 40px;
  }

  .contact-map-inner {
    width: var(--container-md);
  }

  .contact-map-heading {
    margin-bottom: 28px;
  }

  .contact-map-heading h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .contact-map-frame iframe {
    aspect-ratio: 91 / 45;
    min-height: 360px;
  }

  .projects-current-section,
  .projects-tabs-section {
    padding-block: 40px;
  }

  .projects-current-inner {
    width: var(--container-md);
  }

  .projects-tabs-heading h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .projects-tabs-list {
    grid-template-columns: repeat(2, minmax(0, 190px));
    margin-top: 28px;
  }

  .projects-current-heading h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .projects-current-media {
    margin-top: 28px;
  }

  .projects-current-media img {
    aspect-ratio: 91 / 45;
  }

  .projects-current-info.project-preview-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 20px;
    padding-block-start: 18px;
  }

  .projects-current-info .project-stat:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .projects-current-info .project-stat:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .projects-current-info .project-stat:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .projects-current-info .project-stat:nth-of-type(4) {
    grid-column: 4;
    grid-row: 1;
  }

  .projects-current-info .project-preview-btn {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .projects-current-info .project-stat {
    gap: 7px;
  }

  .projects-current-info .project-stat strong {
    font-size: 18px;
    line-height: 22px;
  }

  .projects-current-info .project-stat span {
    font-size: 11px;
    line-height: 15px;
    white-space: nowrap;
  }

  .projects-completed-section {
    padding-block: 36px;
  }

  .projects-completed-heading {
    width: var(--container-md);
  }

  .projects-completed-heading h2 {
    font-size: 26px;
    line-height: 32px;
  }

  .projects-completed-slider {
    width: var(--container-md);
  }

  .projects-completed-track {
    gap: 18px;
    padding-inline: 0;
  }

  .completed-project-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .completed-project-meta {
    padding: 16px 18px 18px;
  }

  .about-intro-inner {
    grid-template-columns: 82px minmax(300px, 1.05fr) minmax(260px, .95fr);
    gap: 24px;
    width: calc(100% - max(22px, calc((100vw - var(--container-md)) / 2)));
    min-height: 360px;
    margin-inline: max(22px, calc((100vw - var(--container-md)) / 2)) 0;
  }

  .about-intro-label {
    padding-bottom: 38px;
    font-size: 30px;
    line-height: 35px;
  }

  .about-intro-copy {
    gap: 16px;
  }

  .about-intro-copy p {
    font-size: 13px;
    line-height: 22px;
  }

  .about-intro-media img {
    min-height: 360px;
  }

  .founders-marquee-section {
    padding-block: 40px;
  }

  .founders-marquee-track {
    font-size: 96px;
    line-height: 96px;
  }

  .management-slide {
    grid-template-columns: minmax(0, 44vw) minmax(0, 1fr);
  }

  .management-media img {
    min-height: 500px;
  }

  .management-content {
    width: min(calc(100% - 44px), 430px);
    margin-left: 44px;
    padding-block: 40px 0;
  }

  .management-kicker {
    margin-bottom: 16px;
  }

  .management-content h2 {
    margin-bottom: 44px;
    font-size: 32px;
    line-height: 37px;
  }

  .management-content p:not(.management-kicker) {
    font-size: 13px;
    line-height: 22px;
  }

  .management-controls {
    margin-top: 64px;
  }

  .vision-mission-section {
    min-height: 100vh;
    min-height: 100svh;
    background-position: 38% center;
  }

  .vision-mission-inner {
    width: var(--container-md);
    gap: 86px;
    min-height: inherit;
    padding-block: 50px;
  }

  .vision-mission-card {
    width: min(100%, 390px);
  }

  .vision-mission-card h2 {
    margin-bottom: 14px;
    font-size: 32px;
    line-height: 37px;
  }

  .vision-mission-kicker {
    margin-bottom: 34px;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 4.62px;
  }

  .vision-mission-card p:not(.vision-mission-kicker) {
    font-size: 13px;
    line-height: 22px;
  }

  .about-choose-section {
    padding-block-start: 40px;
  }

  .about-choose-heading {
    width: var(--container-md);
  }

  .about-choose-heading h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .about-choose-slider {
    margin-top: 38px;
  }

  .about-choose-track {
    gap: 14px;
  }

  .about-choose-card img {
    height: 360px;
  }

  .about-choose-card h3 {
    left: 34px;
    bottom: 34px;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 3px;
  }

  .featured-intro h2 {
    font-size: 32px;
    line-height: 37px;
    white-space: normal;
  }

  .about-showcase-panel h2 {
    font-size: 22px;
    line-height: 27px;
  }

  .about-showcase-card h3 {
    font-size: 26px;
    line-height: 31px;
  }

  .about-showcase-card {
    width: 100%;
    min-height: 0;
    margin-top: clamp(35px, 5.3vw, 90px);
    margin-left: 0;
    padding: 25px !important;
    background: var(--brand-tan);
  }

  .about-showcase-bg {
    padding-block: 30px;
  }

  .about-showcase-copy p,
  .about-showcase-card p {
    font-size: 14px;
    line-height: 19px;
  }

  .section-eyebrow,
  .featured-intro .section-eyebrow {
    margin-bottom: 10px;
  }

  .testimonials-section.section-pad {
    padding-block: 40px;
  }

  .project-preview-media img {
    min-height: 420px;
  }

  .project-preview-media {
    width: 100%;
  }

  .project-preview-info {
    width: 100%;
  }

  .project-preview-inner {
    width: var(--container-md);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 20px;
  }

  .project-preview .project-stat:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1;
  }

  .project-preview .project-stat:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }

  .project-preview .project-stat:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1;
  }

  .project-preview .project-stat:nth-of-type(4) {
    grid-column: 4;
    grid-row: 1;
  }

  .project-preview .project-preview-btn {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: center;
  }

  .project-preview .project-stat {
    gap: 7px;
  }

  .project-preview .project-stat strong {
    font-size: 18px;
    line-height: 22px;
  }

  .project-preview .project-stat span {
    font-size: 11px;
    line-height: 15px;
    white-space: nowrap;
  }

  .project-stat strong {
    font-size: 18px;
    line-height: 22px;
  }

  .project-stat span {
    font-size: 11px;
    line-height: 15px;
    white-space: nowrap;
  }

  .why-choose-inner {
    width: var(--container-md);
  }

  .why-choose-heading h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .why-choose-grid {
    grid-template-columns: 36px minmax(0, 1fr) 36px minmax(0, 1.08fr) 36px minmax(0, 1fr) 36px;
    gap: 10px;
    width: 95vw;
    margin-left: calc(50% - 47.5vw);
    margin-right: calc(50% - 47.5vw);
    padding-inline: 18px;
  }

  .why-card-stack {
    gap: 18px;
  }

  .why-card figcaption {
    left: 20px;
    bottom: 18px;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 2.4px;
  }

  .why-side-label {
    font-size: 8px;
    line-height: 13px;
    letter-spacing: 3.2px;
  }

  .why-side-label-line::before {
    height: calc(50% - 88px);
  }

  .why-side-label-end::before {
    top: 0;
    bottom: auto;
    height: calc(50% - 118px);
  }

  .nisarga-viewsion-inner {
    grid-template-columns: minmax(0, .78fr) minmax(360px, 1.08fr) minmax(0, .78fr);
    width: var(--container-md);
    min-height: 520px;
  }

  .nisarga-viewsion-copy {
    gap: 24px;
    padding: 0;
  }

  .nisarga-viewsion-copy h2 {
    font-size: 24px;
    line-height: .95;
  }

  .nisarga-viewsion-copy p,
  .nisarga-viewsion-content p {
    font-size: 10px;
    line-height: 15px;
  }

  .nisarga-viewsion-content {
    width: min(calc(100% - 44px), 360px);
    padding: 48px 28px 0;
  }

  .nisarga-viewsion-content h2 {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: .95;
  }

  .nisarga-viewsion-logo {
    bottom: 48px;
    width: min(46%, 190px);
  }

  .nisarga-amenities-tabs {
    width: var(--container-md);
    min-height: 112px;
    grid-template-columns: repeat(2, minmax(0, 320px));
  }

  .nisarga-amenities-tab {
    min-height: 48px;
    padding-inline: 28px;
  }

  .nisarga-amenities-tab span {
    font-size: 11px;
    line-height: 13px;
  }

  .nisarga-amenities-tab strong {
    font-size: 20px;
    line-height: 28px;
  }

  .nisarga-amenities-preview img {
    min-height: 430px;
  }

  .nisarga-amenities-caption {
    bottom: 62px;
    min-width: 136px;
    padding: 15px 28px;
    font-size: 10px;
    line-height: 13px;
    letter-spacing: 2.4px;
  }

  .nisarga-amenities-controls {
    bottom: 26px;
    gap: 24px;
  }

  .nisarga-enquiry-section {
    padding-block: 82px 96px;
  }

  .nisarga-enquiry-inner {
    width: var(--container-md);
  }

  .nisarga-enquiry-inner h2 {
    margin-bottom: 44px;
    font-size: 32px;
  }

  .nisarga-enquiry-form {
    gap: 42px 38px;
    width: min(100%, 700px);
  }

  .nisarga-enquiry-icon-left {
    width: 108px;
  }

  .nisarga-enquiry-icon-right {
    width: 174px;
  }

  .nisarga-interiors-section {
    padding-block: 56px 48px;
  }

  .nisarga-interiors-heading {
    width: var(--container-md);
  }

  .nisarga-interiors-heading h2 {
    font-size: 36px;
  }

  .nisarga-interiors-track {
    --interiors-gap: 14px;
    --interiors-half-gap: 7px;
    animation-duration: 30s;
  }

  .nisarga-interiors-slide {
    flex-basis: 420px;
  }

  .nisarga-interiors-slide img {
    height: 360px;
  }

  .nisarga-map-inner {
    width: 100%;
  }

  .nisarga-map-inner h2 {
    top: 54px;
    right: 36px;
    font-size: 32px;
  }

  .nisarga-map-media img {
    min-height: 520px;
    object-position: 45% center;
  }

  .nisarga-master-plan-inner h2 {
    top: 48px;
    left: 34px;
    font-size: 32px;
  }

  .nisarga-master-plan-media img {
    width: 100%;
  }

  .nisarga-legend-section {
    padding: 58px 30px;
  }

  .nisarga-legend-inner h2 {
    margin-bottom: 34px;
    font-size: 32px;
  }

  .nisarga-legend-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 58px;
    width: var(--container-md);
    margin-inline: auto;
  }

  .nisarga-legend-list {
    gap: 7px;
    font-size: 14px;
    line-height: 19px;
  }

  .insights-inner {
    width: var(--container-md);
  }

  .insights-heading h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .blog-insights-section .insights-heading h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .insights-grid {
    gap: 28px;
    margin-top: 38px;
  }

  .blog-insights-section .insights-grid {
    margin-top: 38px;
  }

  .insight-card h3 {
    font-size: 14px;
    line-height: 21px;
  }

  .insight-card p {
    font-size: 13px;
    line-height: 22px;
  }

  .insights-actions {
    margin-top: 40px;
  }

  .testimonials-inner {
    width: var(--container-md);
  }

  .testimonials-heading {
    gap: 48px;
  }

  .testimonials-heading > span {
    font-size: 72px;
  }

  .testimonials-heading h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .testimonials-slider {
    margin-top: 38px;
  }

  .testimonials-track {
    --testimonial-card-width: calc((100vw - var(--testimonial-gap)) / 2);
  }

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

  .nisarga-plan-tab {
    font-size: 14px;
    line-height: 14px;
  }

  .nisarga-plan-panel {
    min-height: 0;
  }

  .nisarga-plan-inner {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  }

  .nisarga-plan-copy {
    grid-template-columns: 1fr;
  }

  .nisarga-plan-tree,
  .nisarga-plan-title,
  .nisarga-area-statement {
    grid-column: 1;
  }

  #nisarga-plan-heading,
  .nisarga-plan-title h2,
  .nisarga-plan-title p {
    font-size: 24px;
    line-height: 29px;
  }

  .nisarga-area-statement h3,
  .nisarga-area-statement dt,
  .nisarga-area-statement dd {
    font-size: 16px;
    line-height: 21px;
  }

  .testimonial-card {
    min-height: 390px;
    padding: 38px 34px;
  }

  .testimonial-card h3 {
    font-size: 26px;
    line-height: 31px;
  }

  .testimonial-card p {
    margin-top: 34px;
    font-size: 13px;
    line-height: 22px;
  }

  .testimonial-card strong {
    margin-top: 38px;
  }

  .contact-inner,
  .contact-info-inner,
  .footer-container,
  .footer-bottom-inner {
    width: var(--container-md);
  }

  .footer-container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "brand office"
      "copy project"
      "nav nav"
      "social social";
    gap: 34px 42px;
    padding-block: 54px 42px;
  }

  .footer-brand img {
    width: 150px;
  }

  .footer-address h2 {
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 24px;
  }

  .footer-address p,
  .footer-copy p {
    font-size: 14px;
    line-height: 24px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px 32px;
    justify-items: start;
  }

  .footer-nav a {
    font-size: 14px;
    letter-spacing: 3.62px;
  }

  .contact-inner h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .contact-form {
    gap: 48px 38px;
    width: min(100%, 728px);
    margin-top: 46px;
  }

  .contact-info-inner p {
    font-size: 32px;
    line-height: 37px;
  }

}

@media (min-width: 729px) and (max-width: 1024px) {
  .career-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 340px);
    width: var(--container-md);
    gap: 42px;
    padding-bottom: 42px;
  }

  .career-hero h1 {
    max-width: 680px;
    font-size: clamp(38px, 6vw, 56px);
    line-height: 1.1;
  }

  .career-hero-copy p {
    font-size: 14px;
    line-height: 21px;
  }

  .career-openings-heading,
  .career-jobs-list,
  .career-process-inner {
    width: var(--container-md);
  }

  .career-process-steps {
    grid-template-columns: 1fr;
  }

  .career-process-steps article {
    min-height: 220px;
  }

  .nisarga-hero {
    min-height: 520px;
    height: 88svh;
  }

  .nisarga-connectivity-card {
    min-height: 240px;
    padding: 30px 26px;
  }

  .nisarga-viewsion-inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, .86fr) minmax(0, 1fr);
  }

  .nisarga-viewsion-content p {
    font-size: 14px;
    line-height: 22px;
  }

  .nisarga-plan-inner {
    grid-template-columns: 1fr;
  }

  .nisarga-plan-copy {
    order: 1;
  }

  .nisarga-plan-media {
    order: 2;
  }
}

@media (max-width: 728px) {
  .site-header {
    --header-open-height: 88px;
  }

  .site-header.is-scrolled {
    --header-open-height: 64px;
  }

  body.menu-open {
    overflow: hidden;
  }

  .nisarga-page .mobile-nav {
    background: rgba(69, 94, 43, .9);
    border-top-color: rgba(248, 248, 248, .18);
    box-shadow: 0 20px 38px rgba(0, 0, 0, .18);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
  }

  .nisarga-page .mobile-nav .nav-link,
  .nisarga-page .site-header:not(.is-scrolled) .mobile-nav .nav-link,
  .nisarga-page .site-header.is-scrolled .mobile-nav .nav-link {
    color: #F8F8F8;
    border-bottom-color: rgba(248, 248, 248, .18);
  }

  .nisarga-page .mobile-nav .nav-link::after,
  .nisarga-page .site-header:not(.is-scrolled) .mobile-nav .nav-link::after {
    background: #F8F8F8;
  }

  .nisarga-page .mobile-nav .nav-link:hover,
  .nisarga-page .mobile-nav .nav-link:focus-visible,
  .nisarga-page .mobile-nav .nav-link.is-active,
  .nisarga-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:hover,
  .nisarga-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:focus-visible,
  .nisarga-page .site-header:not(.is-scrolled) .mobile-nav .nav-link.is-active {
    color: #F8F8F8;
  }

  .page-main h1,
  .page-main h2,
  .page-main h3,
  .page-main p {
    text-align: left;
  }

  .header-container {
    grid-template-columns: 1fr auto;
    width: var(--container-md);
    min-height: 88px;
  }

  .site-header.is-scrolled .header-container {
    min-height: 64px;
  }

  .main-nav {
    display: none;
  }

  .brand-logo {
    width: 100px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 78px;
  }

  .projects-page .site-header:not(.is-scrolled) .mobile-nav .nav-link {
    color: var(--brand-black);
  }

  .blog-page .site-header:not(.is-scrolled) .mobile-nav .nav-link {
    color: var(--brand-black);
  }

  .contact-page .site-header:not(.is-scrolled) .mobile-nav .nav-link {
    color: var(--brand-black);
  }

  .projects-page .site-header:not(.is-scrolled) .mobile-nav .nav-link::after {
    background: var(--brand-maroon);
  }

  .blog-page .site-header:not(.is-scrolled) .mobile-nav .nav-link::after {
    background: var(--brand-maroon);
  }

  .contact-page .site-header:not(.is-scrolled) .mobile-nav .nav-link::after {
    background: var(--brand-maroon);
  }

  .projects-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:hover,
  .projects-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:focus-visible,
  .projects-page .site-header:not(.is-scrolled) .mobile-nav .nav-link.is-active,
  .blog-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:hover,
  .blog-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:focus-visible,
  .blog-page .site-header:not(.is-scrolled) .mobile-nav .nav-link.is-active,
  .contact-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:hover,
  .contact-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:focus-visible,
  .contact-page .site-header:not(.is-scrolled) .mobile-nav .nav-link.is-active {
    color: var(--brand-maroon);
  }

  .about-page .site-header:not(.is-scrolled) .mobile-nav .nav-link {
    color: var(--brand-black);
  }

  .about-page .site-header:not(.is-scrolled) .mobile-nav .nav-link::after {
    background: var(--brand-maroon);
  }

  .about-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:hover,
  .about-page .site-header:not(.is-scrolled) .mobile-nav .nav-link:focus-visible,
  .about-page .site-header:not(.is-scrolled) .mobile-nav .nav-link.is-active {
    color: var(--brand-maroon);
  }

  .about-hero {
    min-height: 100svh;
    align-items: end;
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .48) 0%, rgba(0, 0, 0, .22) 48%, rgba(0, 0, 0, .62) 100%),
      url("../images/about-mobile-new.jpeg") center / cover no-repeat;
  }

  .about-hero-inner {
    width: var(--container-md);
    padding-bottom: 0;
  }

  .about-hero-content {
    width: min(100%, 420px);
    margin-left: 0;
    padding: 0 0 32px;
  }

  .about-hero-kicker {
    margin-bottom: 10px;
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 3.2px;
  }

  .about-hero h1 {
    margin-bottom: 24px;
    font-size: 20px;
    line-height: 26px;
  }

  .about-hero-content p:not(.about-hero-kicker) {
    font-size: 12px;
    line-height: 19px;
  }

  .about-hero-content p + p {
    margin-top: 16px;
  }

  .about-hero-scroll {
    gap: 10px;
    margin-top: 26px;
    font-size: 8px;
    letter-spacing: 3px;
  }

  .about-hero-scroll:hover,
  .about-hero-scroll:focus-visible {
    transform: translateY(3px);
  }

  .projects-hero {
    background-position: 34% center;
  }

  .projects-hero-inner {
    grid-template-columns: 1fr;
    width: var(--container-md);
    gap: 24px;
    padding-bottom: 32px;
  }

  .projects-hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.14;
  }

  .projects-hero-copy {
    padding-bottom: 0;
  }

  .projects-hero-copy p {
    width: min(100%, 320px);
    font-size: 12px;
    line-height: 19px;
    text-align: left;
  }

  .projects-hero-scroll {
    gap: 10px;
    margin-top: 24px;
    font-size: 8px;
    letter-spacing: 3px;
  }

  .blog-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .5) 100%),
      url("../images/blog-mobile.jpeg") center / cover no-repeat;
  }

  .blog-hero-inner {
    grid-template-columns: 1fr;
    width: var(--container-md);
    gap: 24px;
    padding-bottom: 32px;
  }

  .blog-hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.14;
  }

  .blog-hero-copy {
    padding-bottom: 0;
  }

  .js-enabled .blog-hero-copy {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .blog-hero-copy p {
    width: min(100%, 320px);
    font-size: 12px;
    line-height: 19px;
    text-align: left;
  }

  .blog-hero-scroll {
    gap: 10px;
    margin-top: 24px;
    font-size: 8px;
    letter-spacing: 3px;
  }

  .contact-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .36) 0%, rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .48) 100%),
      url("../images/contact-mobile.jpeg") center / cover no-repeat;
  }

  .career-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .44) 0%, rgba(0, 0, 0, .12) 48%, rgba(0, 0, 0, .58) 100%),
      url("../images/career-banner.jpeg") center / cover no-repeat;
  }

  .contact-hero-inner {
    grid-template-columns: 1fr;
    width: var(--container-md);
    gap: 24px;
    padding-bottom: 32px;
  }

  .career-hero-inner {
    grid-template-columns: 1fr;
    width: var(--container-md);
    gap: 24px;
    padding-bottom: 32px;
  }

  .contact-hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.14;
    transform: none;
  }

  .career-hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.14;
    transform: none;
  }

  .contact-hero-copy {
    padding-bottom: 0;
  }

  .career-hero-copy {
    padding-bottom: 0;
  }

  .js-enabled .contact-hero-copy {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .js-enabled .career-hero-copy {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .contact-hero-copy p {
    width: min(100%, 320px);
    font-size: 12px;
    line-height: 19px;
    text-align: left;
  }

  .career-hero-copy p {
    width: min(100%, 320px);
    font-size: 12px;
    line-height: 19px;
    text-align: left;
  }

  .contact-hero-scroll {
    gap: 10px;
    margin-top: 24px;
    font-size: 8px;
    letter-spacing: 3px;
  }

  .career-hero-scroll {
    gap: 10px;
    margin-top: 24px;
    font-size: 8px;
    letter-spacing: 3px;
  }

  .career-openings-section,
  .career-process-section {
    padding-block: 58px;
  }

  .career-openings-heading,
  .career-jobs-list,
  .career-process-inner {
    width: var(--container-md);
  }

  .career-openings-heading h2,
  .career-process-heading h2 {
    font-size: 30px;
    line-height: 1.1;
  }

  .career-process-steps {
    grid-template-columns: 1fr;
  }

  .career-process-steps article {
    min-height: 0;
    padding: 30px 24px;
  }

  .career-job-card {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px;
  }

  .career-apply-btn {
    place-self: center start;
    width: min(100%, 174px);
  }

  .contact-office-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .contact-office-media img {
    min-height: 320px;
    aspect-ratio: 4 / 3;
  }

  .contact-office-content {
    width: var(--container-md);
    align-items: flex-start;
    padding-block: 34px;
    margin-inline: auto;
  }

  .contact-office-content .section-eyebrow {
    margin-bottom: 15px;
    text-align: left;
    font-size: 10px;
    letter-spacing: 3.2px;
  }

  .contact-office-content h2 {
    font-size: 18px;
    line-height: 23px;
    text-align: left;
  }

  .contact-office-content p:not(.section-eyebrow) {
    width: min(100%, 320px);
    margin-top: 28px;
    font-size: 12px;
    line-height: 19px;
    text-align: left;
  }

  .contact-office-link {
    margin-top: 28px;
    font-size: 8px;
    letter-spacing: 3px;
  }

  .contact-map-section {
    padding-block: 25px;
  }

  .contact-map-inner {
    width: var(--container-md);
  }

  .contact-map-heading {
    margin-bottom: 22px;
    text-align: left;
  }

  .contact-map-heading .section-eyebrow,
  .contact-map-heading h2 {
    text-align: left;
  }

  .contact-map-heading h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .contact-map-frame iframe {
    aspect-ratio: 16 / 13;
    min-height: 260px;
  }

  .projects-current-section,
  .projects-tabs-section {
    padding-block: 30px;
  }

  .projects-current-inner {
    width: var(--container-md);
  }

  .projects-current-heading {
    text-align: left;
  }

  .projects-tabs-heading {
    text-align: left;
  }

  .projects-tabs-heading .section-eyebrow,
  .projects-tabs-heading h2 {
    text-align: left;
  }

  .projects-tabs-heading h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .projects-tabs-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 22px;
  }

  .projects-tab {
    min-height: 42px;
    padding: 11px 12px;
    font-size: 10px;
    letter-spacing: 2.4px;
  }

  .projects-tab-panels {
    margin-top: 26px;
  }

  .projects-current-heading .section-eyebrow,
  .projects-current-heading h2,
  .projects-heading-copy {
    text-align: left;
  }

  .projects-current-heading h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .projects-current-media {
    margin-top: 24px;
  }

  .projects-current-media img {
    aspect-ratio: 1.15 / 1;
  }

  .projects-current-info.project-preview-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-block-start: 18px;
  }

  .projects-current-info .project-stat:nth-of-type(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .projects-current-info .project-preview-btn {
    grid-column: 1 / -1;
    grid-row: auto;
    justify-self: start;
  }

  .projects-completed-section {
    padding-block: 30px;
  }

  .projects-completed-heading {
    width: var(--container-md);
    text-align: left;
  }

  .projects-completed-heading .section-eyebrow,
  .projects-completed-heading h2 {
    text-align: left;
  }

  .projects-completed-heading h2 {
    font-size: 22px;
    line-height: 27px;
  }

  .projects-completed-slider {
    width: var(--container-md);
    margin-top: 22px;
  }

  .projects-completed-track {
    gap: 16px;
    padding-inline: 0;
  }

  .completed-project-card {
    flex-basis: 100%;
  }

  .completed-project-meta {
    padding: 15px 16px 17px;
  }

  .completed-project-meta h3 {
    font-size: 14px;
    line-height: 19px;
  }

  .projects-completed-controls {
    justify-content: center;
    gap: 20px;
    margin-top: 24px;
    width: var(--container-md);
    margin-inline: auto;
  }

  .about-intro-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    width: var(--container-md);
    min-height: 0;
    margin-inline: auto;
    padding-block: 28px;
  }

  .about-intro-label {
    align-self: start;
    justify-content: flex-start;
    padding-bottom: 0;
    gap: 6px;
    font-size: 24px;
    line-height: 29px;
    text-align: left;
    flex-wrap: wrap;
    order: 1;
  }

  .about-intro-label span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .about-intro-copy {
    max-width: none;
    gap: 14px;
    order: 2;
  }

  .about-intro-copy p {
    font-size: 12px;
    line-height: 19px;
  }

  .about-intro-media {
    order: 3;
    margin-inline: -18px;
  }

  .about-intro-media img {
    min-height: 240px;
    aspect-ratio: 16 / 9;
  }

  .founders-marquee-section {
    padding-block: 30px;
  }

  .founders-marquee-track {
    font-size: 72px;
    line-height: 72px;
  }

  .management-slide {
    grid-template-columns: 1fr;
  }

  .management-media {
    position: relative;
    order: 1;
    overflow: hidden;
  }

  .management-controls-desktop {
    display: none;
  }

  .management-controls-mobile {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 2;
    display: flex;
    justify-content: center;
    width: auto;
    margin: 0;
    transform: translateX(-50%);
  }

  .management-media img {
    display: block;
    min-height: 0;
    height: auto;
    aspect-ratio: 1.08 / 1;
  }

  .management-content {
    order: 2;
    width: var(--container-md);
    margin-inline: auto;
    padding-block: 30px;
  }

  .management-kicker {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: 3.2px;
  }

  .management-content h2 {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 29px;
  }

  .management-content p:not(.management-kicker) {
    font-size: 12px;
    line-height: 19px;
  }

  .management-content p + p {
    margin-top: 16px;
  }

  .management-controls {
    gap: 16px;
    margin-top: 34px;
  }

  .management-controls-mobile .management-arrow {
    width: 22px;
    height: 22px;
    background-size: 12px 22px;
  }

  .vision-mission-section {
    display: flex;
    align-items: flex-end;
    min-height: 100vh;
    min-height: 100svh;
    background-size: auto 48%;
    background-position: left top;
    background-repeat: no-repeat;
  }

  .vision-mission-inner {
    width: min(calc(100% - 36px), var(--container-sm));
    gap: 34px;
    min-height: auto;
    padding-block: 36px 32px;
  }

  .vision-mission-card {
    width: 100%;
    margin-left: 0;
  }

  .vision-mission-card h2 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: 29px;
  }

  .vision-mission-kicker {
    margin-bottom: 18px;
    text-align: left;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 4.62px;
  }

  .vision-mission-card p:not(.vision-mission-kicker) {
    font-size: 12px;
    line-height: 19px;
  }

  .about-choose-section {
    padding-block-start: 30px;
  }

  .about-choose-heading {
    width: var(--container-md);
    text-align: left;
  }

  .about-choose-heading p,
  .about-choose-heading h2 {
    text-align: left;
  }

  .about-choose-heading p {
    margin-bottom: 10px;
    font-size: 9px;
    letter-spacing: 3.2px;
  }

  .about-choose-heading h2 {
    font-size: 24px;
    line-height: 29px;
  }

  .about-choose-slider {
    margin-top: 28px;
  }

  .about-choose-track {
    gap: 12px;
  }

  .about-choose-card img {
    height: 300px;
  }

  .about-choose-card h3 {
    left: 22px;
    bottom: 22px;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 2.4px;
  }

  .about-choose-controls {
    gap: 24px;
    margin-top: 24px;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: var(--header-open-height);
    right: 0;
    left: 0;
    z-index: 999;
    display: grid;
    grid-template-rows: auto auto;
    gap: 18px;
    max-height: calc(100svh - var(--header-open-height));
    padding: 20px 18px 24px;
    overflow-y: auto;
    background: rgba(248, 242, 236, .96);
    border-top: 1px solid rgba(81, 16, 28, .14);
    box-shadow: 0 20px 38px rgba(0, 0, 0, .08);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      top .35s var(--ease),
      max-height .35s var(--ease),
      opacity .3s var(--ease),
      transform .3s var(--ease),
      visibility .3s var(--ease);
  }

  .mobile-nav-links {
    display: grid;
    align-content: start;
    gap: 4px;
  }

  .footer-container {
    width: var(--container-md);
  }

  .site-header.is-scrolled .mobile-nav {
    top: var(--header-open-height);
    max-height: calc(100svh - var(--header-open-height));
  }

  .menu-open .mobile-nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav .nav-link {
    justify-content: flex-start;
    min-height: 42px;
    padding-inline: 4px;
    border-bottom: 1px solid rgba(81, 16, 28, .12);
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 4.62px;
  }

  .mobile-nav .nav-link:last-child {
    border-bottom: 0;
  }

  .site-header.is-scrolled .mobile-nav .nav-link {
    min-height: 40px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 3.4px;
  }

  .mobile-nav .nav-link::after {
    right: auto;
    bottom: 12px;
    width: 42px;
  }

  .mobile-social {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    padding-top: 10px;
    border-top: 0;
  }

  .mobile-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .42);
    color: #fff;
    transition: color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  }

  .mobile-social a:hover,
  .mobile-social a:focus-visible {
    color: #fff;
    border-color: rgba(255, 255, 255, .72);
    transform: translateY(-2px);
  }

  .mobile-social svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .mobile-social a:nth-child(n + 2) svg {
    fill: currentColor;
    stroke: none;
  }

  .hero-section {
    height: 340vh;
    min-height: 1980px;
  }

  .nisarga-hero {
    min-height: 560px;
    height: 100svh;
  }

  .nisarga-hero-top {
    height: 95%;
  }

  .nisarga-hero-top::before {
    background-size: 420px auto, 620px auto;
  }

  .nisarga-hero-top::after {
    content: none;
  }

  .nisarga-leaf-wrap {
    top: 90%;
    width: clamp(230px, 42vw, 300px);
  }

  .nisarga-intro-section {
    border-top-width: 64px;
  }

  .nisarga-intro-inner {
    top: 34px;
    width: var(--container-md);
    padding-block: 0;
  }

  .nisarga-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 34px;
  }

  .nisarga-stat {
    min-height: 84px;
    padding: 16px 18px;
  }

  .nisarga-stat:nth-child(2n) {
    border-right: 0;
  }

  .nisarga-stat:last-child {
    grid-column: 1 / -1;
  }

  .nisarga-intro-copy {
    margin-top: 32px;
  }

  .nisarga-intro-copy h2 {
    font-size: 24px;
    line-height: normal;
    letter-spacing: 0;
    text-align: center;
  }

  .nisarga-intro-copy p {
    width: min(100%, 320px);
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }

  .nisarga-intro-actions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
  }

  .nisarga-elevation img {
    width: 100%;
    height: auto;
    object-position: center top;
  }

  .nisarga-location-hero {
    margin-top: -150px;
  }

  .nisarga-location-leaves {
    height: auto;
  }

  .nisarga-location-icon {
    top: 54%;
    width: 146px;
  }

  .nisarga-location-heading {
    width: var(--container-md);
    bottom: -6px;
  }

  .nisarga-location-heading h2 {
    font-size: 42px;
  }

  .nisarga-connectivity-section {
    min-height: auto;
    padding-block: 30px;
  }

  .nisarga-connectivity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: var(--container-md);
  }

  .nisarga-connectivity-card {
    min-height: 260px;
    padding: 42px 34px;
  }

  .nisarga-connectivity-card h3 {
    font-size: 20px;
  }

  .nisarga-connectivity-card li {
    font-size: 14px;
    line-height: 14px;
  }

  .nisarga-floor-section {
    padding-block-start: 0;
  }

  .nisarga-floor-heading {
    width: var(--container-md);
    padding-bottom: 14px;
  }

  .nisarga-floor-heading h2 {
    font-size: 24px;
  }

  .nisarga-plan-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: var(--container-md);
    min-height: 118px;
  }

  .nisarga-plan-section {
    background: transparent;
  }

  .nisarga-plan-tab {
    min-height: 54px;
    padding: 9px 14px;
    font-size: 14px;
    line-height: 14px;
  }

  .nisarga-plan-panel {
    min-height: 0;
  }

  .nisarga-plan-inner {
    grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
    gap: 10px;
    width: var(--container-md);
    padding-block: 25px;
  }

  .nisarga-plan-copy {
    grid-template-columns: 1fr;
    row-gap: 18px;
    column-gap: 28px;
  }

  .nisarga-plan-tree {
    grid-column: 1;
    width: 82px;
  }

  .nisarga-plan-title {
    grid-column: 1;
    margin: 0;
  }

  .nisarga-plan-title h2,
  .nisarga-plan-title p {
    font-size: 24px;
    line-height: 29px;
  }

  .nisarga-area-statement h3 {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 21px;
  }

  .nisarga-area-statement dl div {
    gap: 16px;
  }

  .nisarga-area-statement dt,
  .nisarga-area-statement dd {
    font-size: 16px;
    line-height: 21px;
  }

  .nisarga-viewsion-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: var(--container-md);
    min-height: 0;
  }

  .nisarga-viewsion-center {
    grid-column: 1 / -1;
    min-height: 460px;
    order: 1;
  }

  .nisarga-viewsion-copy-left {
    order: 2;
  }

  .nisarga-viewsion-copy-right {
    order: 3;
    padding-left: 22px;
  }

  .nisarga-viewsion-copy-left {
    padding-right: 22px;
  }

  .nisarga-viewsion-copy {
    align-items: flex-start;
    gap: 18px;
    padding: 0;
    text-align: left;
  }

  .nisarga-viewsion-copy h2,
  .nisarga-viewsion-copy p {
    text-align: left;
  }

  .nisarga-viewsion-copy h2 {
    font-size: 22px;
    line-height: .95;
  }

  .nisarga-viewsion-copy-left h2 {
    width: 100%;
    text-align: center;
  }

  .nisarga-viewsion-copy p,
  .nisarga-viewsion-content p {
    font-size: 10px;
    line-height: 15px;
  }

  .nisarga-viewsion-content {
    width: min(calc(100% - 44px), 360px);
    padding: 44px 24px 0;
  }

  .nisarga-viewsion-content h2 {
    margin-bottom: 14px;
    font-size: 28px;
    line-height: .95;
  }

  .nisarga-viewsion-logo {
    bottom: 42px;
    width: min(42%, 180px);
  }

  .nisarga-amenities-tabs {
    width: var(--container-md);
    min-height: 96px;
    grid-template-columns: repeat(2, minmax(0, 270px));
  }

  .nisarga-amenities-tab {
    padding-inline: 18px;
  }

  .nisarga-amenities-tab strong {
    font-size: 18px;
    line-height: 24px;
  }

  .nisarga-amenities-preview img {
    min-height: 360px;
  }

  .nisarga-amenities-caption {
    bottom: 56px;
  }

  .nisarga-enquiry-section {
    padding-block: 58px 72px;
  }

  .nisarga-enquiry-inner {
    width: var(--container-md);
  }

  .nisarga-enquiry-inner h2 {
    margin-bottom: 34px;
    font-size: 26px;
    text-align: center;
  }

  .nisarga-enquiry-form {
    width: min(calc(100% - 36px), 520px);
    gap: 30px 24px;
  }

  .nisarga-enquiry-icon-left {
    width: 88px;
  }

  .nisarga-enquiry-icon-right {
    width: 138px;
  }

  .nisarga-interiors-section {
    padding-block: 42px 36px;
  }

  .nisarga-interiors-heading {
    width: var(--container-md);
  }

  .nisarga-interiors-heading p,
  .nisarga-interiors-heading h2 {
    text-align: center;
  }

  .nisarga-interiors-heading h2 {
    font-size: 28px;
  }

  .nisarga-interiors-slider {
    margin-top: 24px;
  }

  .nisarga-interiors-track {
    --interiors-gap: 12px;
    --interiors-half-gap: 6px;
    animation-duration: 26s;
  }

  .nisarga-interiors-slide {
    flex-basis: calc(100vw - 54px);
  }

  .nisarga-interiors-slide img {
    height: 300px;
  }

  .nisarga-interiors-controls {
    margin-top: 20px;
    gap: 22px;
  }

  .nisarga-map-inner {
    width: 100%;
  }

  .nisarga-map-inner h2 {
    top: 26px;
    right: auto;
    left: 18px;
    font-size: 26px;
    text-align: left;
  }

  .nisarga-map-media img {
    min-height: 430px;
    object-position: 38% center;
  }

  .nisarga-master-plan-inner h2 {
    top: 24px;
    left: 18px;
    font-size: 26px;
  }

  .nisarga-master-plan-media img {
    width: 100%;
  }

  .nisarga-legend-section {
    padding: 44px 18px;
  }

  .nisarga-legend-section::before {
    opacity: .08;
  }

  .nisarga-legend-inner {
    width: var(--container-md);
  }

  .nisarga-legend-inner h2 {
    margin-bottom: 24px;
    font-size: 26px;
  }

  .nisarga-legend-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 360px);
  }

  .nisarga-legend-list {
    gap: 6px;
    font-size: 14px;
    line-height: 19px;
  }

  .hero-arch-wrap {
    --hero-start-width: 70;
    --hero-max-width: 500;
    --hero-start-offset: 189px;
    width: min(calc(var(--hero-max-width) * 1px), calc(var(--hero-start-width) * 1vw));
  }

  .hero-scroll-cue {
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 3.2px;
  }

  .cue-line {
    height: 82px;
  }

  .octave-kicker {
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 6px;
  }

  .octave-marquee {
    margin-bottom: 34px;
  }

  .octave-content h2 {
    font-size: 16px;
    line-height: 1.5;
  }

  .octave-actions {
    margin-top: 26px;
  }

  .octave-btn {
    min-width: 172px;
    min-height: 52px;
    padding: 16px 34px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 5px;
  }

  .about-showcase-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    width: 100%;
  }

  .about-showcase-grid::before {
    display: none;
  }

  .about-showcase-media,
  .about-showcase-panel {
    grid-column: 1;
  }

  .about-showcase-media img {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .about-showcase-copy {
    width: min(calc(100% - 60px), 520px);
    margin: 28px auto 0;
  }

  .about-showcase-panel {
    width: var(--container-sm);
    margin-inline: auto;
    padding: 0;
    text-align: left;
  }

  .about-showcase-card {
    width: 100%;
    min-height: 0;
    margin: 0;
    padding: 38px 38px;
    text-align: left;
  }

  .featured-intro h2 {
    font-size: 32px;
    line-height: 37px;
  }

  .about-showcase-panel h2 {
    font-size: 20px;
    line-height: 25px;
    margin-bottom: 24px;
  }

  .about-showcase-copy p {
    font-size: 14px;
    line-height: 19px;
  }

  .about-showcase-card h3 {
    margin-bottom: 36px;
    font-size: 26px;
    line-height: 31px;
  }

  .about-showcase-card p {
    font-size: 14px;
    line-height: 19px;
  }

  .about-showcase-bg {
    padding-block: 30px;
  }

  .about-showcase-bg-track {
    font-size: 96px;
    line-height: 96px;
  }

  .project-preview-info {
    min-height: auto;
    width: 100%;
  }

  .project-preview-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 18px;
    width: 100%;
    padding-block: 28px;
  }

  .project-preview-inner .project-stat:nth-of-type(n),
  .project-preview-btn {
    grid-column: auto;
    grid-row: auto;
  }

  .project-preview-inner .project-stat strong,
  .project-preview-inner .project-stat span {
    white-space: nowrap;
  }

  .project-stat {
    order: 1;
    gap: 8px;
    justify-items: start;
    text-align: left;
  }

  .project-preview .project-stat:nth-of-type(1),
  .project-preview .project-stat:nth-of-type(2) {
    grid-row: 1;
  }

  .project-preview .project-stat:nth-of-type(3),
  .project-preview .project-stat:nth-of-type(4) {
    grid-row: 2;
  }

  .project-preview-btn {
    order: 99;
    grid-column: 1 / -1;
    grid-row: 3;
    justify-self: start;
    margin-top: 2px;
  }

  .why-choose-inner {
    width: var(--container-md);
  }

  .why-choose-heading h2 {
    font-size: 26px;
    line-height: 31px;
  }

  .why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    width: 95vw;
    max-width: none;
    margin-top: 24px;
    margin-left: calc(50% - 47.5vw);
    margin-right: calc(50% - 47.5vw);
    padding-inline: 18px;
  }

  .why-card-stack {
    width: 100%;
    gap: 22px;
  }

  .why-card,
  .why-card-construction,
  .why-card-prime {
    width: 100%;
    margin: 0 auto;
  }

  .why-card-construction,
  .why-card-prime {
    align-self: start;
  }

  .why-side-label {
    display: none;
  }

  .why-card figcaption {
    left: 18px;
    bottom: 16px;
    font-size: 12px;
    line-height: 17px;
    letter-spacing: 2.2px;
  }

  .insights-inner {
    width: var(--container-md);
  }

  .insights-heading h2 {
    font-size: 26px;
    line-height: 31px;
  }

  .blog-insights-section .insights-heading,
  .blog-insights-section .insights-heading h2,
  .blog-insights-section .insights-heading .section-eyebrow {
    text-align: center;
  }

  .blog-insights-section .insights-heading h2 {
    font-size: 26px;
    line-height: 31px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 34px;
  }

  .blog-insights-section .insights-grid {
    margin-top: 34px;
  }

  .insight-card {
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .insight-card h3 {
    font-size: 14px;
    line-height: 21px;
  }

  .insight-card p {
    font-size: 13px;
    line-height: 22px;
  }

  .insights-actions {
    justify-content: flex-start;
    margin-top: 30px;
  }

  .testimonials-inner {
    width: var(--container-md);
  }

  .testimonials-heading {
    grid-template-columns: 1fr;
    gap: 0;
    justify-items: center;
    text-align: center;
  }

  .testimonials-heading > span {
    display: none;
  }

  .testimonials-heading h2 {
    font-size: 26px;
    line-height: 31px;
  }

  .testimonials-slider {
    margin-top: 30px;
  }

  .testimonials-track {
    --testimonial-card-width: calc(100vw - 36px);
    --testimonial-gap: 16px;
  }

  .testimonial-card {
    min-height: 360px;
    padding: 32px 26px;
  }

  .testimonial-card h3 {
    font-size: 22px;
    line-height: 27px;
  }

  .testimonial-card p {
    margin-top: 26px;
    font-size: 12px;
    line-height: 20px;
  }

  .testimonial-stars {
    margin-top: 28px;
    font-size: 18px;
  }

  .testimonial-card strong {
    margin-top: 30px;
    font-size: 12px;
  }

  .testimonials-controls {
    justify-content: center;
    gap: 22px;
    margin-top: 28px;
  }

  .testimonial-arrow {
    width: 28px;
    height: 28px;
    background-size: 14px 26px;
  }

  .contact-inner,
  .contact-info-inner,
  .footer-container,
  .footer-bottom-inner {
    width: var(--container-md);
  }

  .contact-inner h2 {
    font-size: 26px;
    line-height: 31px;
    text-align: left;
  }

  .contact-form {
    grid-template-columns: 1fr;
    gap: 28px;
    width: min(100%, 520px);
    margin-top: 34px;
  }

  .contact-submit {
    justify-self: start;
    margin-top: 4px;
  }

  .contact-info-inner p {
    font-size: 14px;
    line-height: 21px;
    text-align: left;
    overflow-wrap: anywhere;
  }

  .contact-info-inner p + p {
    margin-top: 14px;
    padding-top: 14px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "office"
      "copy"
      "project"
      "nav"
      "social";
    gap: 24px;
    padding-block: 36px 32px;
    text-align: left;
  }

  .footer-brand img {
    width: 132px;
  }

  .footer-address h2 {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 22px;
  }

  .footer-address p,
  .footer-copy p {
    font-size: 14px;
    line-height: 24px;
  }

  .footer-copy {
    max-width: 280px;
  }

  .footer-nav {
    grid-template-columns: 1fr 1fr;
    gap: 14px 22px;
  }

  .footer-nav a {
    font-size: 14px;
    letter-spacing: 3.62px;
  }

  .footer-social {
    gap: 16px;
  }

  .footer-social a {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 6px;
    padding-block: 14px;
    text-align: left;
  }

  .footer-bottom p {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  :root {
    --section-spacing: 20px;
  }

  .nisarga-hero {
    min-height: 0;
    height: 75svh;
  }

  .nisarga-leaf-wrap {
    top: 90%;
    width: min(62vw, 230px);
  }

  .nisarga-intro-section {
    display: flex;
    flex-direction: column;
    border-top-width: 48px;
  }

  .nisarga-intro-inner {
    position: relative;
    top: auto;
    left: auto;
    width: var(--container-sm);
    margin-inline: auto;
    padding-block: 32px 24px;
    transform: none;
    order: 1;
  }

  .nisarga-elevation {
    order: 2;
  }

  .nisarga-project-logo {
    justify-content: center;
  }

  .nisarga-project-logo img {
    width: 118px;
  }

  .nisarga-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
    border-top: 0;
    border-bottom: 0;
  }

  .nisarga-stat,
  .nisarga-stat:nth-child(2n) {
    justify-items: center;
    min-height: 52px;
    border-right: 0;
    border-bottom: 0;
    padding: 9px 6px;
    text-align: center;
  }

  .nisarga-stat:nth-child(2n) {
    border-right: 0;
  }

  .nisarga-stat:last-child {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 0;
  }

  .nisarga-stat strong {
    font-size: 16px;
  }

  .nisarga-stat span {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .nisarga-intro-copy {
    width: min(100%, 300px);
    margin: 18px auto 0;
    text-align: center;
  }

  .nisarga-intro-copy h2 {
    font-size: 18px;
    line-height: normal;
    text-align: center;
  }

  .nisarga-intro-copy p {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }

  .nisarga-intro-actions {
    justify-content: center;
  }

  .nisarga-intro-actions .octave-btn {
    min-width: 0;
    min-height: 35px;
    padding: 11px 16px;
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .nisarga-elevation img {
    width: 100%;
    height: auto;
    object-position: left top;
  }

  .nisarga-location-hero {
    margin-top: -90px;
  }

  .nisarga-location-leaves {
    height: auto;
  }

  .nisarga-location-icon {
    top: 55%;
    width: 112px;
  }

  .nisarga-location-heading {
    width: var(--container-sm);
    bottom: 2px;
    text-align: center;
  }

  .nisarga-location-heading h2 {
    font-size: 18px;
    text-align: center;
  }

  .nisarga-connectivity-section {
    padding-block: 25px;
  }

  .nisarga-connectivity-grid {
    grid-template-columns: 1fr;
    width: var(--container-sm);
  }

  .nisarga-connectivity-card {
    min-height: 0;
    gap: 20px;
    padding: 30px 22px;
  }

  .nisarga-connectivity-card h3 {
    font-size: 16px;
    line-height: normal;
  }

  .nisarga-connectivity-card ul {
    gap: 8px;
  }

  .nisarga-connectivity-card li {
    font-size: 14px;
    line-height: 14px;
  }

  .nisarga-floor-section {
    padding-block-start: 0;
  }

  .nisarga-floor-heading {
    width: var(--container-sm);
    padding-bottom: 10px;
    text-align: center;
  }

  .nisarga-floor-heading h2 {
    font-size: 18px;
    text-align: center;
  }

  .nisarga-floor-media img {
    min-height: 260px;
    object-position: center;
  }

  .nisarga-plan-tabs,
  .nisarga-plan-tabs.is-visible {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: var(--container-sm);
    min-height: 0;
    padding-block: 25px;
  }

  .nisarga-plan-section {
    background: transparent;
  }

  .nisarga-plan-tab {
    min-height: 48px;
    padding: 8px 10px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    font-size: 12px;
    line-height: 18px;
  }

  .nisarga-plan-tab:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .nisarga-plan-inner {
    grid-template-columns: 1fr;
    width: var(--container-sm);
    gap: 10px;
    padding-block: 25px;
  }

  .nisarga-plan-copy {
    order: 1;
    grid-template-columns: 1fr;
    row-gap: 14px;
    column-gap: 18px;
  }

  .nisarga-plan-media {
    order: 2;
  }

  .nisarga-plan-tree {
    grid-column: 1;
    width: 64px;
  }

  .nisarga-plan-title {
    grid-column: 1;
    gap: 5px;
    margin: 0;
  }

  .nisarga-plan-title h2,
  .nisarga-plan-title p {
    font-size: 24px;
  }

  .nisarga-area-statement h3 {
    margin-bottom: 14px;
    font-size: 14px;
    line-height: normal;
  }

  .nisarga-area-statement {
    margin-top: 0;
  }

  .nisarga-area-statement dl div {
    gap: 14px;
  }

  .nisarga-area-statement dt,
  .nisarga-area-statement dd {
    font-size: 12px;
    line-height: 34px;
  }

  .nisarga-viewsion-inner {
    grid-template-columns: 1fr;
    width: var(--container-sm);
    row-gap: 22px;
  }

  .nisarga-viewsion-center,
  .nisarga-viewsion-copy-left,
  .nisarga-viewsion-copy-right {
    grid-column: 1;
  }

  .nisarga-viewsion-copy-right {
    padding-left: 0;
    padding-bottom: 24px;
  }

  .nisarga-viewsion-copy-left {
    padding-right: 0;
  }

  .nisarga-viewsion-center {
    min-height: 300px;
  }

  .nisarga-viewsion-copy {
    gap: 14px;
    padding: 0;
  }

  .nisarga-viewsion-copy h2 {
    font-size: 18px;
    line-height: .95;
  }

  .nisarga-viewsion-copy-left h2 {
    width: 100%;
    text-align: center;
    white-space: nowrap;
  }

  .nisarga-viewsion-copy-left h2 br {
    display: none;
  }

  .nisarga-viewsion-copy p,
  .nisarga-viewsion-content p {
    width: 100%;
    font-size: 10px;
    line-height: 15px;
  }

  .nisarga-viewsion-content {
    width: var(--container-sm);
    padding-top: 34px;
  }

  .nisarga-viewsion-content h2 {
    margin-bottom: 10px;
    font-size: 24px;
    line-height: .95;
  }

  .nisarga-viewsion-logo {
    bottom: 30px;
    width: min(54%, 150px);
  }

  .nisarga-amenities-tabs {
    width: var(--container-sm);
    min-height: 84px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nisarga-amenities-tab {
    min-height: 42px;
    padding-inline: 10px;
    border-right-width: 1px;
  }

  .nisarga-amenities-tab span {
    font-size: 9px;
    line-height: 11px;
  }

  .nisarga-amenities-tab strong {
    font-size: clamp(13px, 4vw, 16px);
    line-height: 20px;
    overflow-wrap: anywhere;
    white-space: normal;
  }

  .nisarga-amenities-preview img {
    min-height: 280px;
  }

  .nisarga-amenities-caption {
    bottom: 46px;
    min-width: 112px;
    padding: 12px 18px;
    font-size: 9px;
    line-height: 12px;
    letter-spacing: 1.8px;
  }

  .nisarga-amenities-controls {
    bottom: 18px;
    gap: 18px;
  }

  .nisarga-amenities-arrow {
    width: 20px;
    height: 20px;
    background-size: 10px 18px;
  }

  .nisarga-amenity-modal {
    padding: 16px;
  }

  .nisarga-amenity-modal-panel {
    width: min(520px, calc(100vw - 32px));
  }

  .nisarga-amenity-modal-panel img {
    max-height: 56vh;
  }

  .nisarga-enquiry-section {
    padding-block: 44px 62px;
  }

  .nisarga-enquiry-inner {
    width: var(--container-sm);
  }

  .nisarga-enquiry-inner h2 {
    margin-bottom: 28px;
    font-size: 20px;
    text-align: center;
  }

  .nisarga-enquiry-form {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 24px;
  }

  .nisarga-enquiry-form span {
    font-size: 11px;
    line-height: 14px;
  }

  .nisarga-enquiry-submit {
    justify-self: center;
    min-width: 108px;
    min-height: 35px;
    margin-top: 0;
    font-size: 10px;
  }

  .nisarga-enquiry-icon-left {
    left: -22px;
    width: 72px;
  }

  .nisarga-enquiry-icon-right {
    right: -34px;
    width: 104px;
  }

  .nisarga-interiors-heading {
    width: var(--container-sm);
  }

  .nisarga-interiors-heading h2 {
    font-size: 22px;
  }

  .nisarga-interiors-slide {
    flex-basis: calc(100vw - 32px);
  }

  .nisarga-interiors-slide img {
    height: 280px;
  }

  .nisarga-interiors-arrow {
    width: 24px;
    height: 24px;
    background-size: 12px 22px;
  }

  .nisarga-map-inner {
    width: 100%;
  }

  .nisarga-map-inner h2 {
    position: static;
    width: var(--container-sm);
    margin: 0 auto 18px;
    padding-top: 24px;
    font-size: 20px;
    line-height: 1;
    text-align: center;
  }

  .nisarga-map-media img {
    min-height: 360px;
    object-position: 34% center;
  }

  .nisarga-master-plan-inner h2 {
    position: static;
    width: var(--container-sm);
    margin: 0 auto 18px;
    padding-top: 24px;
    font-size: 20px;
    line-height: 1;
    text-align: center;
  }

  .nisarga-master-plan-media img {
    width: 100%;
  }

  .nisarga-legend-section {
    padding: 38px 16px;
  }

  .nisarga-legend-inner {
    width: var(--container-sm);
  }

  .nisarga-legend-inner h2 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .nisarga-legend-grid {
    width: var(--container-sm);
  }

  .nisarga-legend-list {
    gap: 6px;
    font-size: 13px;
    line-height: 18px;
  }

  .hero-section {
    height: 330vh;
    min-height: 1720px;
  }

  .hero-arch-wrap {
    --hero-start-width: 78;
    --hero-max-width: 360;
    --hero-start-offset: 105px;
  }

  .hero-scroll-cue {
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: 2.8px;
  }

  .cue-line {
    height: 68px;
  }

  .octave-kicker {
    width: min(calc(100% - 28px), 320px);
    margin-inline: auto;
    margin-bottom: 18px;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 4px;
    text-align: left;
  }

  .octave-marquee {
    margin-bottom: 28px;
  }

  .octave-marquee-track {
    animation-duration: 34s;
  }

  .octave-marquee span {
    font-size: 64px;
    line-height: normal;
  }

  .octave-marquee img {
    width: 72px;
  }

  .octave-content {
    width: min(calc(100% - 28px), 320px);
    margin-inline: auto;
    text-align: left;
  }

  .octave-content h2 {
    font-size: 15px;
    line-height: 1.5;
    text-align: left;
  }

  .octave-actions {
    flex-flow: row nowrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 22px;
  }

  .octave-btn {
    flex: 0 1 auto;
    width: auto;
    min-width: 0;
    min-height: 35px;
    padding: 11px 18px;
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: 2.4px;
  }

  .about-showcase {
    min-height: 100svh;
  }

  .about-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .52) 0%, rgba(0, 0, 0, .24) 48%, rgba(0, 0, 0, .66) 100%),
      url("../images/about-mobile-new.jpeg") center / cover no-repeat;
  }

  .about-hero-inner {
    width: var(--container-sm);
  }

  .about-hero-content {
    padding-bottom: 26px;
  }

  .about-hero h1 {
    font-size: 18px;
    line-height: 23px;
  }

  .projects-hero {
    background-position: 28% center;
  }

  .projects-hero-inner {
    width: var(--container-sm);
    padding-bottom: 26px;
  }

  .projects-hero h1 {
    font-size: 28px;
    line-height: 1.16;
  }

  .blog-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .42) 0%, rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .5) 100%),
      url("../images/blog-mobile.jpeg") center / cover no-repeat;
  }

  .blog-hero-inner {
    width: var(--container-sm);
    padding-bottom: 26px;
  }

  .blog-hero h1 {
    font-size: 28px;
    line-height: 1.16;
  }

  .contact-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .36) 0%, rgba(0, 0, 0, .08) 48%, rgba(0, 0, 0, .48) 100%),
      url("../images/contact-mobile.jpeg") center / cover no-repeat;
  }

  .career-hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, .44) 0%, rgba(0, 0, 0, .12) 48%, rgba(0, 0, 0, .58) 100%),
      url("../images/career-banner.jpeg") center / cover no-repeat;
  }

  .contact-hero-inner {
    width: var(--container-sm);
    padding-bottom: 26px;
  }

  .career-hero-inner {
    width: var(--container-sm);
    padding-bottom: 26px;
  }

  .contact-hero h1 {
    font-size: 28px;
    line-height: 1.16;
  }

  .career-hero h1 {
    font-size: 28px;
    line-height: 1.16;
  }

  .career-openings-heading,
  .career-jobs-list,
  .career-process-inner {
    width: var(--container-sm);
  }

  .career-openings-heading h2,
  .career-process-heading h2 {
    font-size: 24px;
  }

  .career-job-card h3,
  .career-process-steps h3 {
    font-size: 22px;
  }

  .contact-office-content {
    width: var(--container-sm);
    padding-block: 28px;
  }

  .contact-office-media img {
    min-height: 260px;
  }

  .contact-map-inner {
    width: var(--container-sm);
  }

  .contact-map-heading h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .projects-current-section,
  .projects-tabs-section {
    padding-block: 25px;
  }

  .projects-current-inner {
    width: var(--container-sm);
  }

  .projects-tabs-heading h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .projects-tabs-list {
    grid-template-columns: 1fr;
  }

  .projects-tab {
    width: 100%;
  }

  .projects-current-heading h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .projects-completed-section {
    padding-block: 25px;
  }

  .projects-completed-heading {
    width: var(--container-sm);
  }

  .projects-completed-heading h2 {
    font-size: 19px;
    line-height: 24px;
  }

  .projects-completed-track {
    padding-inline: 0;
  }

  .projects-completed-slider {
    width: var(--container-sm);
  }

  .completed-project-card {
    flex-basis: 100%;
  }

  .projects-completed-controls {
    width: var(--container-sm);
    justify-content: center;
  }

  .projects-completed-arrow {
    width: 22px;
    height: 22px;
    background-size: 11px 22px;
  }

  .about-intro-inner {
    width: var(--container-sm);
    padding-block: 25px;
  }

  .about-intro-media {
    margin-inline: -16px;
  }

  .about-intro-media img {
    min-height: 210px;
  }

  .founders-marquee-section {
    padding-block: 25px;
  }

  .founders-marquee-track {
    font-size: 54px;
    line-height: 54px;
  }

  .management-content {
    width: var(--container-sm);
    padding-block: 25px;
  }

  .management-content h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .management-arrow {
    width: 28px;
    height: 28px;
    background-size: 15px 28px;
  }

  .management-controls-mobile .management-arrow {
    width: 20px;
    height: 20px;
    background-size: 11px 20px;
  }

  .vision-mission-section {
    min-height: 100vh;
    min-height: 100svh;
    background-size: auto 42%;
    background-position: left top;
  }

  .vision-mission-inner {
    width: var(--container-sm);
    padding-block: 32px 25px;
  }

  .vision-mission-card h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .about-choose-section {
    padding-block-start: 25px;
  }

  .about-choose-heading {
    width: var(--container-sm);
  }

  .about-choose-heading h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .about-choose-card,
  .about-choose-card-large {
    flex-basis: calc(100vw - 32px);
  }

  .about-choose-card img {
    height: 280px;
  }

  .management-controls-mobile {
    width: var(--container-sm);
    margin-top: 14px;
  }

  .about-showcase.section-pad {
    padding-block-end: 34px;
  }

  .about-showcase-grid {
    width: 100%;
    gap: 26px;
  }

  .about-showcase-bg {
    padding-block: 25px;
  }

  .about-showcase-bg-track {
    font-size: 54px;
    line-height: 54px;
    letter-spacing: .06em;
  }

  .testimonials-section.section-pad {
    padding-block: 25px;
  }

  .project-preview-media img {
    min-height: 300px;
  }

  .project-preview-media {
    width: 100%;
  }

  .project-preview-info {
    width: 100%;
  }

  .project-preview-inner {
    width: var(--container-sm);
    gap: 22px 14px;
    padding-block: 25px;
  }

  .project-preview-inner .project-stat strong,
  .project-preview-inner .project-stat span {
    white-space: nowrap;
  }

  .project-stat strong {
    font-size: 18px;
    line-height: 23px;
  }

  .project-stat span {
    font-size: 14px;
    line-height: 19px;
  }

  .project-preview-btn {
    min-height: 35px;
    padding: 11px 18px;
  }

  .why-choose-inner {
    width: var(--container-sm);
  }

  .why-choose-heading h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .why-choose-grid,
  .why-card-stack {
    gap: 18px;
  }

  .why-card,
  .why-card-construction,
  .why-card-prime {
    width: 100%;
  }

  .why-card figcaption {
    left: 16px;
    bottom: 14px;
    font-size: 11px;
    line-height: 16px;
    letter-spacing: 2px;
  }

  .insights-inner {
    width: var(--container-sm);
  }

  .insights-heading h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .blog-insights-section .insights-heading,
  .blog-insights-section .insights-heading h2,
  .blog-insights-section .insights-heading .section-eyebrow {
    text-align: center;
  }

  .blog-insights-section .insights-heading h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .insights-grid {
    gap: 30px;
    margin-top: 28px;
  }

  .blog-insights-section .insights-grid {
    margin-top: 28px;
  }

  .insight-card h3 {
    font-size: 12px;
    line-height: 18px;
  }

  .insight-card p {
    font-size: 12px;
    line-height: 19px;
  }

  .insight-card span {
    font-size: 11px;
  }

  .insights-btn {
    min-height: 35px;
    padding: 11px 18px;
  }

  .testimonials-inner {
    width: var(--container-sm);
  }

  .testimonials-heading h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .testimonials-track {
    --testimonial-card-width: calc(100vw - 32px);
  }

  .testimonial-card {
    min-height: 340px;
    padding: 28px 22px;
  }

  .testimonial-card h3 {
    font-size: 18px;
    line-height: 23px;
  }

  .contact-inner,
  .contact-info-inner,
  .footer-container,
  .footer-bottom-inner {
    width: var(--container-sm);
  }

  .contact-inner h2 {
    font-size: 20px;
    line-height: 25px;
  }

  .contact-form {
    gap: 24px;
    margin-top: 28px;
  }

  .contact-form span {
    font-size: 12px;
  }

  .contact-submit {
    min-height: 35px;
    padding: 11px 18px;
  }

  .contact-info-inner p {
    font-size: 14px;
    line-height: 21px;
  }

  .footer-container {
    gap: 28px;
    padding-block: 44px 36px;
  }

  .footer-brand img {
    width: 136px;
  }

  .footer-nav {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .about-showcase-media img {
    aspect-ratio: 1;
  }

  .about-showcase-copy {
    width: var(--container-sm);
    margin-top: 22px;
  }

  .about-showcase-copy p {
    font-size: 12px;
    line-height: 17px;
  }

  .about-showcase-link {
    margin-top: 24px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 3px;
  }

  .section-eyebrow {
    margin-bottom: 10px;
    font-size: 9px;
    line-height: 1.5;
    letter-spacing: 3.2px;
  }

  .about-showcase-panel h2 {
    font-size: 18px;
    line-height: 23px;
    margin-bottom: 18px;
  }

  .about-showcase-panel,
  .about-showcase-copy,
  .featured-intro {
    text-align: left;
  }

  .about-showcase-card {
    width: 100%;
    margin: 0;
    padding: 26px 22px;
    text-align: left;
  }

  .about-showcase-card h3 {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 23px;
  }

  .about-showcase-card p {
    font-size: 12px;
    line-height: 17px;
  }

  .featured-intro {
    width: var(--container-sm);
  }

  .featured-intro h2 {
    font-size: 18px;
    line-height: 23px;
  }

  .nisarga-plan-copy {
    column-gap: 14px;
  }

  .nisarga-plan-tree {
    width: 56px;
  }

  .nisarga-plan-title h2,
  .nisarga-plan-title p {
    font-size: 20px;
  }

  .nisarga-plan-tabs,
  .nisarga-plan-tabs.is-visible {
    width: var(--container-sm);
  }
}

@media (max-width: 320px) {
  .site-header {
    --header-open-height: 82px;
  }

  .site-header.is-scrolled {
    --header-open-height: 60px;
  }

  .nisarga-leaf-wrap {
    top: 90%;
    width: 205px;
  }

  .nisarga-intro-inner {
    top: auto;
    padding-block: 28px 22px;
  }

  .nisarga-project-logo img {
    width: 104px;
  }

  .nisarga-stats {
    margin-top: 20px;
  }

  .nisarga-stat {
    min-height: 48px;
    gap: 6px;
    padding-block: 7px;
  }

  .nisarga-stat strong {
    font-size: 14px;
  }

  .nisarga-stat span {
    font-size: 9px;
  }

  .nisarga-intro-copy {
    margin-top: 14px;
  }

  .nisarga-intro-copy h2 {
    font-size: 18px;
  }

  .nisarga-location-heading h2 {
    font-size: 18px;
  }

  .nisarga-legend-section {
    padding-inline: 12px;
  }

  .nisarga-legend-grid {
    width: 90%;
    gap: 10px;
  }

  .nisarga-legend-list {
    padding-left: 16px;
    font-size: 12px;
    line-height: 17px;
  }

  .nisarga-enquiry-section {
    padding-block: 34px 44px;
  }

  .nisarga-enquiry-inner {
    width: min(calc(100% - 28px), 292px);
  }

  .nisarga-enquiry-inner h2 {
    margin-bottom: 22px;
    font-size: 18px;
    line-height: 1;
    text-align: center;
  }

  .nisarga-enquiry-form {
    gap: 18px;
  }

  .nisarga-enquiry-submit {
    justify-self: center;
  }

  .why-choose {
    width: 100%;
  }

  .why-choose-inner {
    width: 100%;
    max-width: none;
  }

  .why-choose-heading {
    padding-inline: 16px;
  }

  .why-choose-grid {
    width: 95vw;
    max-width: none;
    margin-left: calc(50% - 47.5vw);
    margin-right: calc(50% - 47.5vw);
    padding-inline: 12px;
  }

  .why-card-stack,
  .why-card,
  .why-card-construction,
  .why-card-prime {
    width: 100%;
    max-width: none;
  }

  .why-card figure,
  .why-card img {
    width: 100%;
    max-width: none;
  }

  .header-container {
    width: min(calc(100% - 24px), var(--container-sm));
    min-height: 82px;
  }

  .site-header.is-scrolled .header-container {
    min-height: 60px;
  }

  .brand-logo {
    width: 88px;
  }

  .site-header.is-scrolled .brand-logo {
    width: 70px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .mobile-nav {
    top: var(--header-open-height);
    max-height: calc(100svh - var(--header-open-height));
    padding-inline: 12px;
  }

  .footer-container {
    width: min(calc(100% - 24px), var(--container-sm));
  }

  .site-header.is-scrolled .mobile-nav {
    top: var(--header-open-height);
    max-height: calc(100svh - var(--header-open-height));
  }

  .mobile-nav .nav-link {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 3px;
  }

  .mobile-social a {
    width: 38px;
    height: 38px;
  }

  .hero-section {
    height: 320vh;
    min-height: 1560px;
  }

  .hero-arch-wrap {
    --hero-start-width: 78;
    --hero-max-width: 260;
    --hero-start-offset: 83px;
    width: min(calc(var(--hero-max-width) * 1px), calc(var(--hero-start-width) * 1vw));
  }

  .hero-scroll-cue {
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: 2.6px;
  }

  .cue-line {
    height: 68px;
  }

  .octave-kicker {
    letter-spacing: 3px;
  }

  .octave-marquee span {
    font-size: 48px;
    line-height: normal;
  }

  .octave-marquee img {
    width: 58px;
  }

  .octave-btn {
    min-height: 35px;
    padding: 11px 18px;
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 1.8px;
  }

  .about-showcase-grid,
  .featured-intro {
    width: 100%;
  }

  .about-showcase-panel,
  .about-showcase-panel.is-visible {
    width: var(--container-sm);
    margin-inline: auto;
  }

  .featured-intro {
    width: var(--container-sm);
    margin-inline: auto;
    text-align: left;
  }

  .about-showcase-card {
    padding: 24px 18px;
  }

  .about-showcase-panel h2 {
    font-size: 18px;
    line-height: 23px;
  }

  .featured-intro h2 {
    font-size: 18px;
    line-height: 23px;
  }

  .nisarga-viewsion-copy-left,
  .nisarga-viewsion-content {
    width: min(calc(100% - 28px), 292px);
    margin-left: auto;
    margin-right: auto;
  }

  .nisarga-viewsion-center {
    width: 100%;
    min-height: 320px;
    margin: 0;
  }

  .nisarga-viewsion-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .nisarga-viewsion-copy-left {
    align-items: flex-start;
    gap: 12px;
    padding-right: 0;
    text-align: left;
  }

  .nisarga-viewsion-copy-left h2,
  .nisarga-viewsion-copy-left p {
    text-align: left;
  }

  .nisarga-viewsion-copy-left.is-visible p {
    text-align: center;
  }

  .nisarga-viewsion-copy-left h2,
  .nisarga-viewsion-content h2 {
    font-size: 18px;
    line-height: .95;
  }

  .nisarga-viewsion-copy-left p,
  .nisarga-viewsion-content p {
    width: 100%;
    font-size: 10px;
    line-height: 15px;
  }

  .nisarga-viewsion-content {
    margin: 0 auto;
    padding: 24px 0 10px;
    text-align: center;
  }

  .nisarga-viewsion-content h2,
  .nisarga-viewsion-content p {
    text-align: center;
  }

  .nisarga-viewsion-copy-right {
    align-items: flex-start;
    width: min(calc(100% - 28px), 292px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    text-align: left;
  }

  .nisarga-viewsion-copy-right h2,
  .nisarga-viewsion-copy-right p {
    text-align: left;
    padding-bottom: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .octave-marquee-track {
    animation: none;
  }

  .about-showcase-bg-track {
    animation: none;
  }

  .founders-marquee-track {
    animation: none;
  }

  .about-choose-track {
    animation: none;
  }

  .nisarga-interiors-track {
    animation: none;
  }

  .js-enabled .about-hero-content,
  .js-enabled .contact-hero h1,
  .js-enabled .contact-hero-copy,
  .js-enabled .career-hero h1,
  .js-enabled .career-hero-copy,
  .js-enabled .career-openings-heading,
  .js-enabled .career-job-card,
  .js-enabled .career-process-heading,
  .js-enabled .career-process-steps article,
  .js-enabled .blog-hero h1,
  .js-enabled .blog-hero-copy,
  .js-enabled .projects-hero h1,
  .js-enabled .projects-hero-copy,
  .js-enabled .projects-current-heading,
  .js-enabled .projects-current-media,
  .js-enabled .projects-current-info,
  .js-enabled .projects-completed-heading,
  .js-enabled .projects-completed-slider,
  .js-enabled .projects-completed-controls,
  .js-enabled .about-intro-label,
  .js-enabled .about-intro-copy,
  .js-enabled .about-intro-media,
  .js-enabled .management-media,
  .js-enabled .management-content,
  .js-enabled .vision-mission-card,
  .js-enabled .about-choose-heading,
  .js-enabled .about-choose-slider,
  .js-enabled .about-choose-controls,
  .js-enabled .octave-kicker,
  .js-enabled .octave-marquee,
  .js-enabled .octave-content,
  .js-enabled .about-showcase-copy,
  .js-enabled .about-showcase-panel,
  .js-enabled .about-showcase-card,
  .js-enabled .featured-intro,
  .js-enabled .project-preview-media,
  .js-enabled .project-preview-info,
  .js-enabled .why-choose-heading,
  .js-enabled .why-card,
  .js-enabled .why-side-label,
  .js-enabled .insights-heading,
  .js-enabled .insight-card,
  .js-enabled .insights-actions,
  .js-enabled .testimonials-heading,
  .js-enabled .testimonials-slider,
  .js-enabled .testimonials-controls,
  .js-enabled .nisarga-connectivity-card,
  .js-enabled .nisarga-floor-heading,
  .js-enabled .nisarga-floor-media,
  .js-enabled .nisarga-plan-tabs,
  .js-enabled .nisarga-plan-copy,
  .js-enabled .nisarga-plan-media,
  .js-enabled .nisarga-viewsion-copy,
  .js-enabled .nisarga-viewsion-center,
  .js-enabled .nisarga-amenities-tabs,
  .js-enabled .nisarga-amenities-slider,
  .js-enabled .nisarga-enquiry-inner,
  .js-enabled .nisarga-interiors-heading,
  .js-enabled .nisarga-interiors-slider,
  .js-enabled .nisarga-interiors-controls,
  .js-enabled .nisarga-map-inner,
  .js-enabled .contact-inner,
  .js-enabled .contact-info-inner,
  .js-enabled .about-showcase-card h3,
  .js-enabled .about-showcase-card p {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .about-showcase-media:hover img,
  .about-showcase-media:focus-within img {
    transform: none;
  }
}
