@font-face {
  font-family: Articulat;
  src: url("fonts/Articulat CF Normal.ttf") format("truetype");
  font-style: normal;
  font-display: swap;
}
:root {
  --brand: #ba4d09;
  --black: #11100f;
  --grey: #f1f0ed;
  --warm: #e7e1d9;
  --white: #fff;
  --pad: clamp(24px, 5vw, 80px);
  --forum: "Forum", serif;
  --body: Articulat, Arial, sans-serif;
  --footer-reveal-height: 320px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: auto;
}
body {
  margin: 0;
  background: var(--brand);
  color: var(--black);
  font-family: var(--body);
  font-size: 16px;
  overflow-x: hidden;
  padding-bottom: var(--footer-reveal-height);
}
main {
  position: relative;
  z-index: 1;
  background: var(--grey);
}
body.menu-open,
body.modal-open {
  overflow: hidden;
}
button,
a {
  color: inherit;
}
button {
  font: inherit;
}
a {
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
}
h1,
h2,
h3,
p {
  margin: 0;
}
::selection {
  background: var(--brand);
  color: #fff;
}
.page-loader {
  position: fixed;
  inset: 0;
  background: #f8f6f1;
  z-index: 999;
  display: grid;
  place-content: center;
  text-align: center;
  isolation: isolate;
}
.loader-glow {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, 80vw);
  aspect-ratio: 1;
  translate: -50% -50%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(186, 77, 9, 0.09), transparent 68%);
  pointer-events: none;
  z-index: -1;
}
.loader-mark {
  opacity: 0;
  width: 54px;
  height: 48px;
  overflow: hidden;
  margin: auto;
}
.loader-mark img {
  width: 66px;
  height: 54px;
  object-fit: cover;
  object-position: top;
}
.page-loader p {
  opacity: 0;
  font-family: var(--forum);
  font-size: 32px;
  margin: 18px 0 24px;
  letter-spacing: 0.08em;
}
.loader-line {
  width: 110px;
  margin-inline: auto;
  height: 1px;
  background: #e8dfd4;
  overflow: hidden;
}
.loader-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
}
.cursor {
  position: fixed;
  z-index: 1000;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(186, 77, 9, 0.65);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 0.25s,
    height 0.25s,
    background 0.25s;
}
.cursor span {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cursor.is-hover {
  width: 58px;
  height: 58px;
  background: rgba(186, 77, 9, 0.12);
}
.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: 116px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.28), transparent);
  z-index: -1;
}
.brand {
  position: absolute;
  left: 50%;
  top: 11px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.brand-mark {
  width: 58px;
  height: 54px;
  object-fit: cover;
  object-position: top;
  filter: none;
}
.brand-name {
  font-family: var(--forum);
  font-size: 28px;
  line-height: 0.95;
}
.enquire-btn {
  justify-self: start;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 100px;
  color: #fff;
  padding: 10px 20px 8px;
  display: flex;
  gap: 15px;
  align-items: center;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  cursor: pointer;
}
.enquire-btn i {
  display: block;
  width: 5px;
  height: 5px;
  background: var(--brand);
  border-radius: 50%;
}
.menu-toggle {
  justify-self: end;
  background: none;
  border: 0;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.16em;
  cursor: pointer;
}
.menu-icon {
  width: 34px;
  height: 18px;
  position: relative;
}
.menu-icon i {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #fff;
  right: 0;
  transition: 0.4s;
}
.menu-icon i:first-child {
  top: 4px;
}
.menu-icon i:last-child {
  bottom: 4px;
  width: 70%;
}
.menu-open .menu-icon i:first-child {
  transform: rotate(45deg);
  top: 8px;
}
.menu-open .menu-icon i:last-child {
  transform: rotate(-45deg);
  bottom: 9px;
  width: 100%;
}
.menu-panel {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #efeae3;
  color: var(--black);
  display: grid;
  grid-template-columns: 42% 58%;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}
.menu-visual {
  padding: 140px 0 0 var(--pad);
}
.menu-image {
  height: 100%;
  background: url("img/Elevation-portrait.webp") center/cover;
}
.menu-content {
  padding: 160px var(--pad) 55px;
  display: flex;
  flex-direction: column;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 10px;
}
.menu-content .eyebrow {
  color: #777;
}
.menu-content ul {
  list-style: none;
  padding: 40px 0 0;
  margin: 0;
}
.menu-content li {
  border-bottom: 1px solid #c8c0b7;
}
.menu-content a {
  font-family: var(--forum);
  font-size: clamp(40px, 5vw, 68px);
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 9px 0;
  transition:
    color 0.3s,
    padding-left 0.3s;
}
.menu-content li a:hover {
  color: var(--brand);
  padding-left: 12px;
}
.menu-contact {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 12px;
}
.menu-contact a {
  font: inherit;
  padding: 0;
  color: var(--black);
}
.hero {
  height: 100svh;
  min-height: 680px;
  position: relative;
  overflow: hidden;
  background: #1c1a18;
  color: #fff;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.hero-bg,
.hero-building {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  object-fit: cover;
}
.hero-building {
  mix-blend-mode: normal;
  opacity: 0.5;
}
.hero-wash {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(9, 8, 7, 0.44) 0%,
      rgba(9, 8, 7, 0.12) 45%,
      rgba(9, 8, 7, 0.06)
    ),
    linear-gradient(0deg, rgba(9, 8, 7, 0.34), transparent 42%);
}
.hero-content {
  position: absolute;
  left: var(--pad);
  bottom: 12%;
  max-width: 700px;
}
.hero-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--forum);
  font-size: clamp(58px, 4.5vw, 112px);
  font-weight: 400;
  line-height: 0.84;
  letter-spacing: -0.025em;
}
.hero-title em {
  color: #f4e7da;
  font-style: normal;
}
.hero-meta {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}
.hero-meta span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.6);
  padding-left: 30px;
}
.slider-control {
  position: absolute;
  right: var(--pad);
  bottom: 10%;
  display: flex;
  align-items: center;
  gap: 18px;
}
.slider-arrow {
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: transparent;
  color: #fff;
  width: 43px;
  height: 43px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}
.slider-arrow:hover {
  background: #fff;
  color: #111;
}
.slider-index {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
}
.slider-index i {
  display: block;
  width: 45px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  position: relative;
}
.slider-index i::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 1px;
  background: #fff;
}
.scroll-cue {
  position: absolute;
  right: var(--pad);
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 9px;
}
.scroll-cue i {
  width: 45px;
  height: 1px;
  background: #fff;
  display: block;
}
.section-pad {
  padding: clamp(90px, 12vw, 180px) var(--pad);
}
.intro {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.06fr);
  gap: clamp(56px, 5vw, 96px);
  min-height: 0;
  padding-right: 0;
  padding-bottom: clamp(32px, 4vw, 64px);
}
.intro-copy {
  padding-top: 60px;
}
.intro h2,
.amenities h2,
.gallery h2,
.specifications h2,
.location h2 {
  font: 400 clamp(58px, 4.5vw, 112px)/0.92 var(--forum);
  letter-spacing: -0.025em;
  margin: 20px 0 35px;
}
.body-copy {
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.65;
  color: #65615c;
  max-width: 600px;
}
.text-link {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 40px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 10px;
  padding: 14px 0;
  margin-top: 35px;
}
.text-link span {
  font-size: 18px;
}
.discover-link {
  justify-content: space-between;
  gap: 28px;
  padding: 10px 20px 8px;
  border: 1px solid rgba(17, 16, 15, 0.55);
  border-radius: 100px;
  transition:
    color 0.3s,
    border-color 0.3s,
    background-color 0.3s;
}
.discover-link:hover {
  color: var(--brand);
  border-color: var(--brand);
  background: rgba(239, 234, 227, 0.75);
}
.intro-image {
  height: 700px;
  overflow: hidden;
}
.intro-image img {
  height: 115%;
  object-fit: cover;
  margin-top: -7%;
}
.image-caption {
  display: flex;
  justify-content: space-between;
  align-items: end;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 26px clamp(26px, 3vw, 48px);
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
}
.image-caption span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.image-caption strong {
  font-family: var(--forum);
  font-weight: 400;
  font-size: clamp(24px, 1.8vw, 34px);
}
.parallax-wrap {
  position: relative;
  overflow: hidden;
}
.intro-stats {
  display: flex;
  align-items: stretch;
  width: 100%;
  margin-top: auto;
  padding-top: 48px;
  border-top: 1px solid #c7c2bc;
}
.intro-stat {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
  padding: 0 18px;
  border-left: 1px solid #c7c2bc;
}
.intro-stat:first-child {
  padding-left: 0;
  border-left: 0;
}
.intro-stat strong {
  font: clamp(28px, 2.1vw, 38px)/0.95 var(--forum);
  font-weight: 400;
  color: var(--brand);
  white-space: nowrap;
}
.intro-stat span {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 9px;
  line-height: 1.45;
}
.amenities {
  display: grid;
  grid-template-columns: 50% 50%;
  min-height: 850px;
}
.amenities-image {
  overflow: hidden;
}
.amenities-image img {
  height: 100%;
  object-fit: cover;
}
.amenities-panel {
  background: #e8e3dc;
  padding: 110px var(--pad);
}
.amenities-panel h2 {
  font-size: clamp(58px, 4.5vw, 112px);
}
.amenity-list {
  margin-top: 75px;
  border-top: 1px solid #bdb7af;
}
.amenity-item {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #bdb7af;
  background: none;
  padding: 22px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  text-align: left;
  align-items: center;
  cursor: pointer;
}
.amenity-item strong {
  font: 24px var(--forum);
  font-weight: 400;
}
.amenity-label {
  position: relative;
  display: block;
  height: 1.2em;
  overflow: hidden;
}
.amenity-label > span {
  display: block;
  line-height: 1.2em;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
.amenity-label > span:last-child {
  position: absolute;
  top: 100%;
  left: 0;
  color: var(--brand);
}
.amenity-item:hover .amenity-label > span,
.amenity-item.is-active .amenity-label > span,
.amenity-item:focus-visible .amenity-label > span {
  transform: translateY(-100%);
}
.amenity-item i {
  font-style: normal;
  opacity: 0;
  transform: translate(-10px, 10px);
  transition: 0.3s;
}
.amenity-item:hover i,
.amenity-item.is-active i {
  opacity: 1;
  transform: none;
}
.amenity-item.is-active strong {
  color: var(--brand);
}
.gallery {
  background: #f6f5f2;
}
.gallery-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.gallery-open-btn {
  flex: 0 0 auto;
  align-self: auto;
  margin-bottom: 35px;
  background: transparent;
  cursor: pointer;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 530px 480px;
  gap: 22px;
  margin-top: 75px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
}
.gallery-item img {
  position: absolute;
  left: 0;
  top: -70px;
  width: 100%;
  height: calc(100% + 140px);
  object-fit: cover;
  margin-top: 0;
}
.gallery-item figcaption {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 24px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.55));
  font: 22px var(--forum);
}
.gallery-wide {
  grid-column: 1;
  grid-row: 1;
}
.gallery-tall {
  grid-column: 2;
  grid-row: 1 / span 2;
}
.gallery-grid > .gallery-item:last-child {
  grid-column: 1;
  grid-row: 2;
}
.gallery-lightbox {
  position: fixed;
  z-index: 300;
  inset: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 64px clamp(20px, 4vw, 64px) 22px;
  color: #fff;
  background: rgba(12, 11, 10, 0.96);
  visibility: hidden;
  opacity: 0;
}
.gallery-lightbox-close {
  position: absolute;
  z-index: 2;
  top: 18px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 27px;
  cursor: pointer;
}
.gallery-lightbox-stage {
  grid-column: 2;
  min-width: 0;
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.gallery-lightbox-stage img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: calc(100vh - 210px);
  object-fit: contain;
}
.gallery-lightbox-stage figcaption {
  width: min(100%, 1100px);
  display: flex;
  justify-content: space-between;
  padding-top: 12px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #c9c5bf;
}
.gallery-lightbox-stage figcaption small {
  font-size: inherit;
}
.gallery-lightbox-arrow {
  width: 48px;
  height: 48px;
  justify-self: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.gallery-lightbox-prev {
  grid-column: 1;
  grid-row: 1;
}
.gallery-lightbox-next {
  grid-column: 3;
  grid-row: 1;
}
.gallery-lightbox-thumbs {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  justify-content: center;
  padding: 2px 0 5px;
}
.gallery-lightbox-thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 54px;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  opacity: 0.55;
  cursor: pointer;
  transition:
    opacity 0.25s,
    border-color 0.25s;
}
.gallery-lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-lightbox-thumb.is-active {
  opacity: 1;
  border-color: var(--brand);
}
body.gallery-open {
  overflow: hidden;
}
.specifications {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(50px, 8vw, 130px);
  background: #e8e3dc;
}
.spec-intro {
  position: sticky;
  top: 110px;
  height: max-content;
}
.spec-intro .eyebrow {
  color: var(--brand);
}
.spec-summary {
  max-width: 430px;
  margin-top: 34px;
  padding-top: 25px;
  border-top: 1px solid rgba(17, 16, 15, 0.18);
  color: #69635d;
  font-size: 15px;
  line-height: 1.7;
}
.accordion {
  display: grid;
  gap: 12px;
  padding-top: 18px;
}
.acc-item {
  overflow: hidden;
  border: 1px solid rgba(17, 16, 15, 0.12);
  border-radius: 4px;
  background: rgba(248, 245, 240, 0.62);
  box-shadow: 0 8px 30px rgba(51, 42, 34, 0);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background-color 0.35s ease,
    box-shadow 0.35s ease;
}
.acc-item:hover {
  transform: translateY(-2px);
  border-color: rgba(186, 77, 9, 0.32);
  background: rgba(250, 247, 243, 0.9);
}
.acc-item.is-open {
  border-color: rgba(186, 77, 9, 0.42);
  background: #f8f4ee;
  box-shadow: 0 18px 45px rgba(66, 51, 39, 0.1);
}
.acc-item button {
  width: 100%;
  border: 0;
  background: none;
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 18px;
  align-items: center;
  text-align: left;
  padding: 18px;
  cursor: pointer;
}
.acc-item button::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a9a098;
  transition:
    background-color 0.3s,
    box-shadow 0.3s;
}
.acc-item.is-open button::before {
  background: var(--brand);
  box-shadow: 0 0 0 5px rgba(186, 77, 9, 0.11);
}
.acc-item button strong {
  font: 30px/1 var(--forum);
  font-weight: 400;
}
.acc-item button i {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 16, 15, 0.25);
  border-radius: 50%;
  font-style: normal;
  font-size: 19px;
  line-height: 1;
  transition:
    color 0.3s,
    border-color 0.3s,
    background-color 0.3s,
    transform 0.3s;
}
.acc-item.is-open button i {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
  transform: rotate(180deg);
}
.acc-content {
  height: 0;
  overflow: hidden;
}
.acc-content p,
.acc-content ul {
  padding: 0 35px 30px 53px;
  color: #625e59;
  line-height: 1.6;
  font-size: 14px;
}
.acc-content ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 30px;
  margin: 0;
  padding-left: 70px;
}
.acc-content li::marker {
  color: var(--brand);
}
.location {
  display: grid;
  grid-template-columns: 56% 44%;
  min-height: 95vh;
  background: #f7f6f2;
}
.location-copy {
  padding-right: 8vw;
}
.location-tabs {
  margin-top: 52px;
}
.location-tab-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ccc;
}
.location-tab-list button {
  padding: 9px 13px;
  border: 1px solid rgba(17, 16, 15, 0.24);
  border-radius: 100px;
  background: transparent;
  color: #625e59;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 8px;
  cursor: pointer;
  transition:
    color 0.3s,
    border-color 0.3s,
    background-color 0.3s;
}
.location-tab-list button:hover {
  color: var(--brand);
  border-color: var(--brand);
}
.location-tab-list button[aria-selected="true"] {
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}
.location-tab-panel[hidden] {
  display: none;
}
.distance-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 0;
}
.distance-list div {
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 22px;
}
.distance-list div:nth-child(odd) {
  border-right: 1px solid #ccc;
}
.distance-list div:nth-child(even) {
  padding-left: 25px;
}
.distance-list strong {
  font: 23px var(--forum);
  color: var(--brand);
  min-width: 64px;
}
.distance-list span {
  font-size: 11px;
}
.location-visual {
  position: relative;
  background: #ded8cf;
  overflow: hidden;
}
.location-visual > iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.map-lightbox {
  position: fixed;
  z-index: 320;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(55px, 6vw, 90px) clamp(16px, 5vw, 80px) clamp(20px, 4vw, 60px);
  background: rgba(12, 11, 10, 0.96);
  visibility: hidden;
  opacity: 0;
}
.map-lightbox > img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.map-lightbox-close {
  position: absolute;
  top: 18px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 27px;
  cursor: pointer;
}
body.map-open {
  overflow: hidden;
}
.marathi-statement {
  position: relative;
  overflow: hidden;
  background: #d9d0c2;
  min-height: 100svh;
  padding: clamp(52px, 6vw, 100px) var(--pad);
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-items: center;
}
.marathi-statement-intro,
.marathi-display,
.marathi-statement-cta {
  position: relative;
  z-index: 1;
}
.marathi-statement-intro {
  width: min(310px, 24vw);
  margin-left: 8vw;
}
.marathi-statement-intro .eyebrow {
  margin-bottom: 18px;
  color: rgba(17, 16, 15, 0.58);
}
.marathi-statement-intro > p:last-child {
  font-size: clamp(15px, 1.2vw, 20px);
  line-height: 1.5;
}
.marathi-display {
  margin: 0;
  font-family: "Noto Serif Devanagari", serif;
  font-weight: 400;
  color: #2d241d;
}
.marathi-segment {
  display: inline-block;
  will-change: transform, opacity;
}
.marathi-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 38px);
  white-space: nowrap;
  font-size: clamp(64px, 7.3vw, 142px);
  line-height: 1.04;
  letter-spacing: -0.045em;
}
.marathi-line-two {
  margin-top: clamp(14px, 2vw, 34px);
}
.marathi-image {
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  will-change: clip-path;
}
.marathi-image-wide {
  width: clamp(150px, 14vw, 275px);
  height: clamp(88px, 8vw, 155px);
}
.marathi-image-square {
  width: clamp(105px, 10vw, 190px);
  height: clamp(105px, 10vw, 190px);
}
.marathi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.marathi-statement:hover .marathi-image img {
  transform: scale(1.045);
}
.marathi-statement-cta {
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px 8px;
  border-radius: 100px;
  background: var(--brand);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 30px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 10px;
  border: 0;
  font-family: var(--body);
  cursor: pointer;
}
.marathi-statement-cta span {
  font-size: 17px;
}
.statement-expansion {
  position: absolute;
  z-index: 2;
  inset: 0;
  visibility: hidden;
  overflow: hidden;
  clip-path: inset(50% 50% 50% 50%);
}
.statement-expansion > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center;
}
.statement-expansion-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(18, 14, 11, 0.78) 0%,
    rgba(18, 14, 11, 0.42) 48%,
    rgba(18, 14, 11, 0.08) 100%
  );
}
.statement-expansion-content {
  position: absolute;
  z-index: 1;
  left: var(--pad);
  bottom: clamp(58px, 8vw, 120px);
  width: min(610px, 46vw);
  color: #fff;
  opacity: 0;
  transform: translateY(34px);
}
.statement-expansion-content > p {
  font-size: clamp(17px, 1.45vw, 24px);
  line-height: 1.55;
}
.statement-expansion-content > strong {
  display: block;
  margin-top: 20px;
  font: 400 clamp(22px, 2vw, 34px)/1.25 var(--forum);
}
.statement-expansion-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}
.statement-expansion-actions button {
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 100px;
  padding: 10px 20px 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 24px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 9px;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition:
    background-color 0.3s,
    border-color 0.3s;
}
.statement-expansion-actions button:hover {
  background: var(--brand);
  border-color: var(--brand);
}
.statement-expansion-actions span {
  font-size: 16px;
}
.marathi-marquee {
  margin-top: 20px;
  overflow: hidden;
  background: transparent;
  padding-block: 0;
  color: transparent;
  -webkit-text-stroke: 1px var(--brand);
}
.marathi-marquee-track {
  opacity: 0.6;
  margin-bottom: -40px;
  display: flex;
  width: max-content;
  animation: marathi-marquee-scroll 38s linear infinite;
}
.marathi-marquee-track > span {
  flex: 0 0 auto;
  min-width: 100vw;
  padding: 0.12em 16px;
  font-family: "Noto Serif Devanagari", serif;
  font-size: clamp(40px, 6.5vw, 112px);
  font-weight: 500;
  line-height: 1.65;
  white-space: nowrap;
}
.marathi-marquee-track > span::after {
  content: "";
  display: inline-block;
  width: 0.14em;
  height: 0.14em;
  margin-left: 0.45em;
  border-radius: 50%;
  background: var(--brand);
  vertical-align: middle;
}
@keyframes marathi-marquee-scroll {
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .marathi-marquee-track {
    width: 100%;
    animation: none;
  }
  .marathi-marquee-track > span {
    min-width: 0;
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .marathi-marquee-track > span + span {
    display: none;
  }
}
.closing {
  height: 82vh;
  min-height: 620px;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.closing > img {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
}
.closing-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.05));
}
.closing-copy {
  position: absolute;
  left: var(--pad);
  top: 50%;
  transform: translateY(-50%);
}
.closing-copy h2 {
  font: clamp(58px, 4.5vw, 112px)/0.92 var(--forum);
  font-weight: 400;
  margin: 22px 0 38px;
}
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-title,
.intro h2,
.amenities h2,
.gallery h2,
.specifications h2,
.location h2,
.closing-copy h2,
.modal-copy h2 {
  font-size: clamp(58px, 4.5vw, 112px);
}
.primary-btn {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  border-radius: 100px;
  padding: 10px 20px 8px;
  display: flex;
  align-items: center;
  gap: 40px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 10px;
  cursor: pointer;
}
.primary-btn i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-style: normal;
}
.footer {
  padding: 90px var(--pad) 28px;
  position: fixed;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--brand);
  color: #fff;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-brand img {
  width: 75px;
  height: 62px;
  object-fit: cover;
  object-position: top;
  filter: brightness(0) invert(1);
}
.footer-brand span {
  font: 38px var(--forum);
}
.footer-address > span {
  color: rgba(255, 255, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 8px;
}
.footer-address p {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 15px;
  color: rgba(255, 255, 255, 0.82);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  align-items: flex-start;
  margin-top: 18px;
}
.footer-bottom {
  grid-column: 1/-1;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  padding-top: 22px;
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.footer-bottom a {
  color: #fff;
}
.enquiry-modal {
  position: fixed;
  z-index: 200;
  inset: 0;
  background: #efeae3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 10vw;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
}
.modal-close {
  position: absolute;
  right: 4vw;
  top: 4vw;
  border: 1px solid #aaa;
  background: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 28px;
  cursor: pointer;
}
.modal-copy h2 {
  font: clamp(58px, 4.5vw, 112px)/0.85 var(--forum);
  margin: 25px 0;
}
.modal-copy > p:last-child {
  color: #777;
  max-width: 370px;
  line-height: 1.6;
}
.enquiry-form {
  padding-left: 8vw;
}
/* Keep hidden spam fields and status messages out of the form layout. */
.enquiry-form [hidden] {
  display: none !important;
}
.enquiry-form label {
  display: block;
  border-bottom: 1px solid #aaa;
  padding: 19px 0;
}
.enquiry-form label span {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.17em;
  color: #777;
}
.enquiry-form input {
  display: block;
  width: 100%;
  border: 0;
  background: none;
  font: 24px var(--forum);
  outline: 0;
  padding: 8px 0;
}
.enquiry-form .primary-btn {
  margin-top: 35px;
  color: #111;
}
.form-note {
  font-size: 9px;
  color: #888;
  margin-top: 18px;
}
@media (max-width: 900px) {
  .cursor {
    display: none;
  }
  .site-header {
    height: 90px;
  }
  .brand {
    top: 8px;
  }
  .brand-mark {
    width: 48px;
    height: 42px;
  }
  .brand-name {
    font-size: 24px;
  }
  .enquire-btn {
    padding: 10px 20px;
  }
  .enquire-btn span {
    display: none;
  }
  .menu-label {
    display: none;
  }
  .menu-panel {
    grid-template-columns: 1fr;
  }
  .menu-visual {
    display: none;
  }
  .menu-content {
    padding: 130px var(--pad) 40px;
  }
  .menu-content a {
    font-size: 44px;
  }
  .hero-content {
    bottom: 16%;
  }
  .slider-control {
    bottom: 5%;
    left: var(--pad);
    right: auto;
  }
  .scroll-cue {
    display: none;
  }
  .intro {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-right: var(--pad);
  }
  .intro-copy {
    padding: 0;
  }
  .intro-image {
    grid-column: 1;
    height: 520px;
  }
  .intro-stats {
    grid-column: 1;
  }
  .amenities {
    grid-template-columns: 1fr;
  }
  .amenities-image {
    height: 530px;
  }
  .amenities-panel {
    padding: 90px var(--pad);
  }
  .specifications {
    grid-template-columns: 1fr;
  }
  .spec-intro {
    position: static;
  }
  .accordion {
    padding-top: 0;
  }
  .location {
    grid-template-columns: 1fr;
    height: auto;
  }
  .location-visual {
    height: 550px;
  }
  .enquiry-modal {
    grid-template-columns: 1fr;
    padding: 100px var(--pad) 50px;
    overflow-y: auto;
  }
  .enquiry-form {
    padding: 40px 0 0;
  }
  .footer {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-contact {
    align-items: flex-start;
  }
  .gallery-grid {
    grid-template-rows: 430px 400px;
  }
  .marathi-statement-intro {
    width: min(390px, 62vw);
    margin-left: 0;
  }
  .marathi-line {
    flex-wrap: wrap;
    font-size: clamp(52px, 9vw, 78px);
    white-space: normal;
  }
}
@media (max-width: 620px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }
  .hero {
    min-height: 650px;
  }
  .hero-bg,
  .hero-building {
    object-position: 62% center;
  }
  .hero-wash {
    background: linear-gradient(0deg, rgba(5, 5, 4, 0.58), transparent 65%);
  }
  .hero-content {
    left: 24px;
    right: 24px;
  }
  .hero-kicker {
    font-size: 9px;
  }
  .hero-meta {
    gap: 12px;
    flex-direction: column;
  }
  .hero-meta span + span {
    border: 0;
    padding: 0;
  }
  .intro {
    grid-template-columns: 1fr;
    padding-top: 100px;
  }
  .intro-copy,
  .intro-image,
  .intro-stats {
    grid-column: 1;
  }
  .marathi-statement {
    height: 100vh;
    height: 100lvh;
    min-height: 100vh;
    min-height: 100lvh;
    padding: 72px 24px 56px;
  }
  .marathi-statement-intro {
    width: 100%;
    max-width: 360px;
    margin: 0 auto 44px;
    text-align: center;
  }
  .marathi-display {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-self: center;
    gap: 34px;
    text-align: center;
  }
  .marathi-line {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: center;
    align-items: end;
    column-gap: 24px;
    row-gap: 18px;
    font-size: clamp(40px, 11.2vw, 54px);
    line-height: 1.08;
    text-align: center;
  }
  .marathi-line > .marathi-segment:last-child {
    grid-column: 1 / -1;
    justify-self: center;
  }
  .marathi-line-two {
    margin-top: 0;
  }
  .marathi-image-wide {
    width: 126px;
    height: 74px;
  }
  .marathi-image-square {
    width: 84px;
    height: 84px;
  }
  .marathi-statement-cta {
    margin-top: 58px;
  }
  .statement-expansion {
    display: block;
  }
  .statement-expansion-shade {
    background: linear-gradient(
      0deg,
      rgba(18, 14, 11, 0.88) 0%,
      rgba(18, 14, 11, 0.48) 62%,
      rgba(18, 14, 11, 0.12) 100%
    );
  }
  .statement-expansion-content {
    left: 24px;
    right: 24px;
    bottom: 48px;
    width: auto;
  }
  .statement-expansion-content > p {
    font-size: 16px;
    line-height: 1.5;
  }
  .statement-expansion-content > strong {
    font-size: 23px;
  }
  .statement-expansion-actions {
    margin-top: 24px;
  }
  .intro-image {
    height: 450px;
  }
  .section-pad {
    padding-left: 24px;
    padding-right: 24px;
  }
  .intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 0;
    margin-top: 48px;
  }
  .intro-stat:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }
  .amenities-image {
    order: 3;
    height: 320px;
  }
  .amenities {
    display: flex;
    flex-direction: column;
    min-height: auto;
    background: #e8e3dc;
  }
  .amenities-panel {
    display: contents;
  }
  .amenities-panel > .eyebrow {
    order: 1;
    padding: 90px 24px 0;
  }
  .amenities-panel > h2 {
    order: 2;
    padding: 0 24px 36px;
  }
  .amenity-list {
    order: 4;
    margin: 24px;
  }
  .amenity-item {
    padding: 24px 0;
  }
  .amenity-item strong {
    font-size: 20px;
  }
  .acc-item button {
    padding: 18px;
  }
  .acc-item button strong {
    font-size: 26px;
  }
  .acc-content ul {
    grid-template-columns: 1fr;
    padding: 0 22px 26px 56px;
  }
  .gallery-grid {
    display: block;
    margin-top: 45px;
  }
  .gallery-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }
  .gallery-open-btn {
    margin: 0 0 35px;
  }
  .gallery-lightbox {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 8px;
    padding: 58px 10px 14px;
  }
  .gallery-lightbox-stage img {
    max-height: calc(100vh - 190px);
  }
  .gallery-lightbox-arrow {
    width: 40px;
    height: 40px;
  }
  .gallery-lightbox-thumbs {
    justify-content: flex-start;
  }
  .gallery-item {
    height: 410px;
    margin-bottom: 18px;
  }
  .gallery-tall {
    height: 520px;
  }
  .specifications {
    gap: 30px;
  }
  .location-copy {
    padding-right: 24px;
  }
  .distance-list {
    grid-template-columns: 1fr;
  }
  .distance-list div:nth-child(odd) {
    border-right: 0;
  }
  .distance-list div:nth-child(even) {
    padding-left: 0;
  }
  .closing {
    height: 700px;
  }
  .closing > img {
    object-position: 65% center;
  }
  .closing-copy {
    right: 24px;
  }
  .closing-actions .primary-btn {
    gap: 20px;
    padding: 10px 20px;
  }
  .closing-actions .primary-btn i {
    width: 28px;
    height: 28px;
  }
  .footer {
    grid-template-columns: 1fr;
    padding: 70px 24px calc(80px + env(safe-area-inset-bottom, 0px));
    justify-items: center;
    text-align: center;
  }
  .footer-brand {
    grid-column: auto;
    align-items: center;
  }
  .footer-contact {
    align-items: center;
  }
  .footer-bottom {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 15px;
    text-align: center;
  }
  .menu-contact {
    flex-direction: column;
    gap: 8px;
  }
  .menu-content li a {
    font-size: 41px;
  }
  .enquiry-modal {
    padding-left: 24px;
    padding-right: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
  .cursor {
    display: none;
  }
}
.hero-building {
  display: none;
}
.hero-bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: center center;
}
.hero-title {
  font-size: clamp(58px, 4.5vw, 112px);
}
.enquire-btn {
  grid-column: 1;
}
.menu-toggle {
  grid-column: 3;
}
.menu-open .site-header {
  position: fixed;
  background: #11100f;
  border-bottom-color: rgba(255, 255, 255, 0.16);
}
.menu-open .site-header::after {
  display: none;
}
.menu-panel {
  padding-top: 116px;
}
.menu-visual {
  padding-top: 24px;
}
.menu-content {
  padding-top: 52px;
}
@media (max-width: 900px) {
  .menu-panel {
    padding-top: 90px;
  }
  .menu-content {
    padding-top: 48px;
  }
}
@media (max-width: 620px) {
  .menu-toggle {
    grid-column: 2;
  }

  .hero {
    height: 650px;
    min-height: 650px;
  }

  .hero-content {
    bottom: 5%;
  }

  .hero-bg,
  .hero-building {
    object-position: center center;
  }
}

/* Keep the hero artwork centred on devices with a short viewport. */
@media (max-height: 650px) {
  .hero-bg,
  .hero-building {
    object-position: center center;
  }
}
.loader-mark {
  width: clamp(170px, 22vw, 220px);
  height: auto;
  aspect-ratio: 1352 / 1081;
  overflow: visible;
}
.logo-svg-host svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.brand-mark {
  display: block;
  overflow: visible;
}
.brand-mark svg {
  width: 100%;
  height: 100%;
}
.brand .logo-dark {
  fill: #fff;
}
.brand .sun-part {
  fill: var(--brand);
}
.loader-mark .logo-dark {
  fill: #0b0b0b;
}
.loader-mark .sun-part {
  fill: var(--brand);
}
.cursor {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  transition:
    width 0.25s,
    height 0.25s;
}
.cursor svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
  color: var(--brand);
  animation: cursorSunSpin 10s linear infinite;
}
.cursor.is-hover {
  width: 54px;
  height: 54px;
  background: transparent;
}
.cursor.is-hover svg {
  animation-duration: 4s;
}
@keyframes cursorSunSpin {
  to {
    transform: rotate(360deg);
  }
}
.intro-copy {
  display: flex;
  flex-direction: column;
  min-height: 700px;
}
.intro.section-pad {
  padding: clamp(64px, 7vw, 112px) clamp(32px, 5vw, 80px);
}
@media (max-width: 900px) {
  .intro-copy {
    min-height: auto;
  }
  .intro-stats {
    margin-top: 50px;
  }
}

@media (max-width: 620px) {
  .intro.section-pad {
    padding-right: 24px;
    padding-bottom: 0;
    padding-left: 24px;
  }

  .intro-image {
    width: calc(100% + 48px);
    margin-right: -24px;
    margin-left: -24px;
  }
}
.text-link,
.swap-link {
  overflow: hidden;
}
.text-link .link-label,
.text-link .link-icon,
.swap-link .link-label,
.swap-link .link-icon {
  position: relative;
  display: block;
  overflow: hidden;
}
.text-link .link-label,
.swap-link .link-label {
  height: 1.2em;
  min-width: max-content;
  font-size: 10px;
}
.text-link .link-label > span,
.swap-link .link-label > span {
  display: block;
  font-size: 10px;
  line-height: 1.2em;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
.text-link .link-label > span:last-child,
.swap-link .link-label > span:last-child {
  position: absolute;
  left: 0;
  top: 100%;
  color: var(--brand);
}
.text-link .link-icon,
.swap-link .link-icon {
  width: 22px;
  height: 22px;
}
.text-link .link-icon > i,
.swap-link .link-icon > i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font: 18px/1 var(--body);
  font-style: normal;
  transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
.text-link .link-icon > i:last-child,
.swap-link .link-icon > i:last-child {
  transform: translate(-70%, 70%) rotate(-20deg);
  color: var(--brand);
}
.text-link:is(:hover, :focus-visible) .link-label > span:first-child,
.swap-link:is(:hover, :focus-visible) .link-label > span:first-child {
  transform: translateY(-100%);
}
.text-link:is(:hover, :focus-visible) .link-label > span:last-child,
.swap-link:is(:hover, :focus-visible) .link-label > span:last-child {
  transform: translateY(-100%);
}
.text-link:is(:hover, :focus-visible) .link-icon > i:first-child,
.swap-link:is(:hover, :focus-visible) .link-icon > i:first-child {
  transform: translate(70%, -70%) rotate(20deg);
}
.text-link:is(:hover, :focus-visible) .link-icon > i:last-child,
.swap-link:is(:hover, :focus-visible) .link-icon > i:last-child {
  transform: translate(0, 0) rotate(0);
}
.swap-link .link-label > span:last-child,
.swap-link .link-icon > i:last-child {
  color: #fff;
}
.site-header {
  position: fixed;
  height: 78px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition:
    transform 0.48s cubic-bezier(0.76, 0, 0.24, 1),
    background-color 0.3s,
    backdrop-filter 0.3s;
}
.site-header::after {
  display: none;
}
.site-header.header-scrolled {
  color: var(--black);
  border-bottom-color: rgba(17, 16, 15, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: #efeae3cf;
}
.site-header.header-scrolled .enquire-btn {
  color: var(--black);
  border-color: rgba(17, 16, 15, 0.55);
  background: rgba(255, 255, 255, 0.35);
}
.site-header.header-scrolled .menu-toggle {
  color: var(--black);
}
.site-header.header-scrolled .menu-icon i {
  background: var(--black);
}
.brand-mark {
  transition: filter 0.3s;
}
.site-header.header-scrolled .brand-mark {
  filter: none;
}
.site-header.header-scrolled .brand .logo-dark {
  fill: var(--black);
}
.site-header.header-scrolled .brand .sun-part {
  fill: var(--brand);
}
.site-header.header-hidden {
  transform: translateY(-105%);
}
.brand {
  top: 6px;
}
.brand-mark {
  width: 44px;
  height: 40px;
}
.brand-name {
  font-size: 23px;
}
.menu-panel {
  padding-top: 78px;
}
.menu-open .site-header {
  transform: translateY(0);
  color: var(--black);
  border-bottom-color: rgba(17, 16, 15, 0.12);
  background: #efeae3;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.menu-open .site-header .enquire-btn {
  color: var(--black);
  border-color: rgba(17, 16, 15, 0.55);
  background: rgba(255, 255, 255, 0.25);
}
.menu-open .site-header .menu-toggle {
  color: var(--black);
}
.menu-open .site-header .menu-icon i {
  background: var(--black);
}
.menu-open .site-header .brand-mark {
  filter: none;
}
.menu-open .site-header .brand .logo-dark {
  fill: var(--black);
}
.menu-open .site-header .brand .sun-part {
  fill: var(--brand);
}
@media (max-width: 900px) {
  .site-header {
    height: 70px;
    display: flex;
    justify-content: space-between;
  }
  .site-header .enquire-btn {
    display: none;
  }
  .site-header .brand {
    position: static;
    transform: none;
  }
  .site-header .menu-toggle {
    min-width: 44px;
    min-height: 44px;
    justify-content: flex-end;
  }
  .brand {
    top: 5px;
  }
  .brand-mark {
    width: 40px;
    height: 36px;
  }
  .brand-name {
    font-size: 21px;
  }
  .menu-panel {
    padding-top: 70px;
  }
}

/* Requested content and CTA refinements; existing section layouts retained. */
.bhk-highlight {
  font-weight: inherit;
}
.hero-kicker strong {
  font-weight: 700;
}
.project-by.section-pad {
  background: #fff;
  padding: clamp(70px, 8vw, 120px) 0 0;
}
.project-by-layout {
  width: calc(100% - 2 * var(--pad));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 0.9fr);
  align-items: center;
  gap: clamp(60px, 8vw, 130px);
  max-width: 1500px;
  margin: 0 auto;
}
.project-by-copy {
  container-type: inline-size;
}
.project-by-copy h2 {
  max-width: none;
  font: min(38px, 4.8cqw)/1.15 var(--forum);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.project-by-copy p {
  max-width: 680px;
  margin-top: 36px;
  color: #3f3d3a;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.55;
}
.project-partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  width: 100%;
}
.project-partner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: space-between;
  padding: 0 28px;
}
.project-partner + .project-partner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #555;
}
.project-partner p {
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.4;
  color: #292929;
}
.project-partner img {
  display: block;
  width: min(100%, 200px);
  height: auto;
  object-fit: contain;
  margin-top: 28px;
}
@media (max-width: 1100px) {
  .project-by-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .project-by-copy h2,
  .project-by-copy p {
    max-width: 760px;
  }
}
.footer-rera {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  text-align: right;
  font-size: 13px;
  line-height: 1.6;
}
.footer-rera img {
  display: block;
  width: 90px;
  height: 90px;
  object-fit: contain;
  background: #fff;
}
.footer-rera strong {
  white-space: nowrap;
}
.footer-rera + .footer-bottom {
  margin-top: 0;
}
.artistic-label {
  position: absolute;
  z-index: 3;
  right: 16px;
  bottom: 16px;
  padding: 5px 8px;
  /* background: rgba(0, 0, 0, 0.65); */
  color: #fff;
  font: 11px/1.4 var(--body);
  letter-spacing: 0.03em;
  pointer-events: none;
}
.amenities-image,
.menu-image,
.gallery-lightbox-stage {
  position: relative;
}
.gallery-item .artistic-label,
.gallery-lightbox-stage .artistic-label {
  bottom: auto;
  top: 16px;
}
.hero > .artistic-label {
  bottom: 12px;
}
.floating-enquiry-btn {
  position: fixed;
  z-index: 60;
  right: max(20px, env(safe-area-inset-right));
  bottom: max(20px, env(safe-area-inset-bottom));
  gap: 20px;
  box-shadow: 0 4px 18px rgba(17, 16, 15, 0.16);
}
.primary-btn.floating-enquiry-btn {
  font-size: 13px;
  transition: opacity 0.2s;
}
.floating-enquiry-sun {
  order: -1;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  overflow: visible;
  filter: brightness(0) invert(1);
  animation: cursorSunSpin 10s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .floating-enquiry-sun {
    animation: none;
  }
}
.primary-btn.floating-enquiry-btn:is(:hover, :focus-visible) {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
  opacity: 0.85;
}
body:is(.menu-open, .modal-open, .gallery-open, .map-open)
  .floating-enquiry-btn {
  visibility: hidden;
}
/* Brand-orange CTAs that become transparent outlines on hover or focus. */
.enquire-btn,
.primary-btn,
.enquiry-form .primary-btn,
.discover-link,
.marathi-statement-cta,
.statement-expansion-actions button {
  --cta-hover-color: var(--black);
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
  font-size: 13px;
  transition:
    background-color 0.3s,
    border-color 0.3s,
    color 0.3s;
}
.enquire-btn,
.closing-actions .primary-btn,
.statement-expansion-actions button {
  --cta-hover-color: #fff;
}
.site-header.header-scrolled .enquire-btn,
.menu-open .site-header .enquire-btn {
  --cta-hover-color: var(--black);
  color: #fff;
  border-color: var(--brand);
  background: var(--brand);
}
.enquire-btn i {
  background: currentColor;
}
.primary-btn i {
  background: transparent;
  color: inherit;
  font-size: 22px;
}
.discover-link .link-label,
.discover-link .link-label > span,
.swap-link .link-label,
.swap-link .link-label > span {
  font-size: 13px;
}
.discover-link .link-label > span:last-child,
.discover-link .link-icon > i:last-child,
.swap-link .link-label > span:last-child,
.swap-link .link-icon > i:last-child {
  color: inherit;
}
.enquire-btn:is(:hover, :focus-visible),
.site-header.header-scrolled .enquire-btn:is(:hover, :focus-visible),
.menu-open .site-header .enquire-btn:is(:hover, :focus-visible),
.primary-btn:is(:hover, :focus-visible),
.enquiry-form .primary-btn:is(:hover, :focus-visible),
.discover-link:is(:hover, :focus-visible),
.marathi-statement-cta:is(:hover, :focus-visible),
.statement-expansion-actions button:is(:hover, :focus-visible) {
  background: transparent;
  border-color: var(--cta-hover-color);
  color: var(--cta-hover-color);
}
.scroll-cue {
  font-size: 12px;
}
.enquire-btn.swap-link .link-label,
.enquire-btn.swap-link .link-label > span,
.primary-btn.swap-link .link-label,
.primary-btn.swap-link .link-label > span {
  display: block;
  font-size: inherit;
}
@media (prefers-reduced-motion: reduce) {
  .text-link .link-label > span,
  .swap-link .link-label > span,
  .text-link .link-icon > i,
  .swap-link .link-icon > i {
    transition: none;
  }
}
@media (max-width: 620px) {
  .project-by.section-pad {
    padding: 44px 0 0;
  }
  .project-by-layout {
    gap: 42px;
  }
  .project-by-copy p {
    margin-top: 24px;
    font-size: 15px;
  }
  .project-partners {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
  .project-partner {
    min-width: 0;
    padding: 0 10px;
  }
  .project-partner + .project-partner::before {
    top: 0;
    bottom: 0;
    left: 0;
    width: 1px;
    height: auto;
  }
  .project-partner p {
    font-size: 12px;
    min-height: 2.8em;
  }
  .project-partner img {
    width: min(100%, 160px);
    margin-top: 16px;
  }
  .marathi-marquee {
    margin-top: 24px;
    padding-block: 8px;
  }
  .marathi-marquee-track {
    margin-bottom: 0;
  }
  .footer-rera {
    align-items: center;
    text-align: center;
  }
  .primary-btn.floating-enquiry-btn {
    right: max(12px, env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    min-height: 44px;
    padding: 10px 14px;
    gap: 8px;
    font-size: 11px;
    line-height: 1.2;
    letter-spacing: 0.08em;
  }
  .floating-enquiry-sun {
    flex-basis: 18px;
    width: 18px;
    height: 18px;
  }
  .hero-title {
    font-size: clamp(38px, 9vw, 58px);
  }
  .enquire-btn span {
    display: inline;
  }
  .enquire-btn {
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 10px 20px;
    gap: 7px;
  }
  .closing-actions .primary-btn {
    font-size: 12px;
    letter-spacing: 0.08em;
  }
}

/* Brochure floor plan previews */
.floor-plans {
  background: var(--warm);
}
.floor-plans h2 {
  font: 400 clamp(48px, 4.5vw, 88px)/1 var(--forum);
  letter-spacing: -0.025em;
  margin: 20px 0 28px;
}
.floor-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 24px;
  margin-top: 48px;
}
.floor-plan-card {
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.floor-plan-preview {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f5f4f2;
}
.floor-plan-preview img {
  width: 100%;
  height: auto;
  aspect-ratio: 765 / 480;
  object-fit: contain;
}
.floor-plan-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: #fff;
  background: #11100f33;
  text-shadow: 0 1px 4px #0008;
  transition: background 200ms;
}
.floor-plan-card:hover .floor-plan-cta,
.floor-plan-card:focus-visible .floor-plan-cta {
  background: #11100f66;
}
.floor-plan-card:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 6px;
}
@media (max-width: 760px) {
  .floor-plans-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 540px) {
  .floor-plans-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
  }
}

/* Registration details in the expanded header menu. */
.menu-content {
  min-height: 0;
  min-width: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.menu-content > * {
  flex-shrink: 0;
}
.menu-rera {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 28px 0;
  color: #65615c;
  font-size: 12px;
  line-height: 1.6;
}
.menu-rera img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: #fff;
  flex-shrink: 0;
}
.menu-rera-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
  gap: 3px;
}
.menu-rera-copy strong {
  font-size: 15px;
  color: var(--black);
  letter-spacing: 0.04em;
}
.menu-rera-copy a {
  display: block;
  padding: 0;
  font: inherit;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.menu-rera-copy a:hover {
  color: var(--brand);
}
@media (max-width: 620px) {
  .menu-content {
    padding-top: 24px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }
  .menu-content ul {
    padding-top: 20px;
  }
  .menu-rera {
    gap: 14px;
    margin: 24px 0;
    font-size: 11px;
  }
  .menu-rera img {
    width: 80px;
    height: 80px;
  }
  .menu-rera-copy strong {
    font-size: 14px;
  }
  @media (max-width: 620px) {
    .hero {
      background: url("img/ShreeTej-Mobile-Slider.webp") center center / cover
        no-repeat;
    }

    .hero-slide {
      display: none !important;
    }
  }
}

/* Decorative logo artwork should not intercept hover or show SVG tooltips. */
.logo-svg-host svg,
.logo-svg-host img {
  pointer-events: none;
}
