:root {
  --cream: #fbf2df;
  --cream-2: #fff8ec;
  --sand: #e8cda0;
  --gold: #c58a2a;
  --gold-bright: #e3b457;
  --maroon: #5a1817;
  --maroon-2: #7a2920;
  --ink: #17231f;
  --muted: #6f675a;
  --teal: #082f3a;
  --teal-2: #0c5360;
  --leaf: #304c2b;
  --line: rgba(156, 98, 31, 0.24);
  --shadow: 0 24px 70px rgba(75, 38, 16, 0.2);
  --container: 1180px;
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  line-height: 1.5;
  background: var(--cream);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(235, 183, 92, 0.2), transparent 28rem),
    radial-gradient(circle at 90% 7%, rgba(14, 86, 91, 0.12), transparent 24rem),
    linear-gradient(180deg, var(--cream-2), var(--cream));
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(129, 78, 24, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(129, 78, 24, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 85%);
}

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

button,
input,
select {
  font: inherit;
}

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

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-header,
main,
.site-footer,
.floating-call {
  position: relative;
}

.site-header,
main,
.site-footer {
  z-index: 1;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section-pad {
  padding: 86px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(166, 112, 41, 0.22);
  background: rgba(255, 248, 236, 0.86);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 26px;
}

.header-inner::after {
  position: absolute;
  right: 18px;
  bottom: -1px;
  left: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 138, 42, 0.76), transparent);
  content: "";
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  width: 210px;
  height: 60px;
}

.brand::before {
  position: absolute;
  left: -16px;
  width: 5px;
  height: 42px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, var(--gold-bright), transparent);
  content: "";
  opacity: 0.8;
}

.brand img {
  width: 196px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  flex: 1;
}

.desktop-nav a {
  position: relative;
  color: #17231f;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  min-height: 48px;
  border: 1px solid rgba(142, 89, 35, 0.34);
  border-radius: 8px;
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  isolation: isolate;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn::before {
  position: absolute;
  inset: -30% -48%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 240, 184, 0.22) 48%, transparent 62%);
  content: "";
  transform: translateX(-72%) skewX(-18deg);
}

.btn svg {
  transition: transform 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:hover::before {
  animation: buttonShine 820ms ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn-primary,
.btn-nav {
  color: #fff8ea;
  border-color: rgba(248, 202, 116, 0.42);
  background: linear-gradient(135deg, var(--maroon), #74221e 60%, #41120f);
  box-shadow: 0 14px 30px rgba(90, 24, 23, 0.22), inset 0 0 0 1px rgba(246, 207, 128, 0.24);
}

.btn-ghost {
  color: var(--maroon);
  background: rgba(255, 250, 241, 0.72);
}

.btn-nav {
  min-width: 154px;
}

.mobile-toggle {
  display: none;
  width: 48px;
  height: 48px;
  color: var(--leaf);
  border: 1px solid rgba(129, 78, 24, 0.28);
  border-radius: 50%;
  background: rgba(255, 248, 236, 0.64);
}

.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 760px;
  padding: 148px 0 34px;
  overflow: hidden;
  isolation: isolate;
  color: #fff8e8;
  background: #120f0c;
  align-items: flex-end;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -3;
  content: "";
  background: transparent;
}

.hero-visual-shell {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: #120f0c url("../assets/home-hero-carousel-desktop-1.png") center/cover no-repeat;
}

.hero-visual-shell picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.035);
  animation: heroCarouselFade 30s ease-in-out infinite both;
  will-change: opacity, transform;
}

.hero-carousel-slide:nth-child(1) {
  opacity: 1;
  animation-name: heroCarouselFirstFade;
  animation-delay: 0s;
}

.hero-carousel-slide:nth-child(2) {
  animation-delay: 8.5s;
}

.hero-carousel-slide:nth-child(3) {
  animation-delay: 18.5s;
}

.hero-visual-shell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-carousel-dots {
  position: absolute;
  right: clamp(28px, 4vw, 64px);
  bottom: clamp(24px, 4vw, 52px);
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-carousel-dots span {
  display: block;
  width: 38px;
  height: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.32);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.hero-carousel-dots span::before {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
  background: var(--gold-bright);
  content: "";
  animation: heroCarouselProgress 30s linear infinite;
}

.hero-carousel-dots span:nth-child(1)::before {
  animation-delay: 0s;
}

.hero-carousel-dots span:nth-child(2)::before {
  animation-delay: 8.5s;
}

.hero-carousel-dots span:nth-child(3)::before {
  animation-delay: 18.5s;
}

.hero-visual-shell::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 11, 9, 0.74) 0%, rgba(13, 11, 9, 0.38) 38%, rgba(13, 11, 9, 0.04) 76%),
    linear-gradient(180deg, rgba(13, 11, 9, 0.04) 0%, rgba(13, 11, 9, 0.52) 100%);
  content: "";
}

.temple-backdrop {
  position: absolute;
  left: 0;
  bottom: 58px;
  z-index: -2;
  width: 100%;
  height: 330px;
  color: rgba(116, 74, 33, 0.18);
  fill: currentColor;
  stroke: rgba(116, 74, 33, 0.24);
  stroke-width: 2;
}

.hero-grid {
  display: block;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin-left: clamp(28px, 4.8vw, 76px);
}

.ornament {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ornament span {
  width: 48px;
  height: 1px;
  background: currentColor;
}

.about-copy-only .ornament,
.enquire-copy .ornament {
  width: 100%;
  justify-content: center;
}

.hero h1,
.section-copy h2,
.devotion-quote h2,
.location-copy h2,
.gallery-copy h2,
.specs-card h2,
.enquire-copy h2 {
  margin: 18px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

.hero h1 {
  max-width: 610px;
  color: #fff8e8;
  font-size: clamp(3.4rem, 6.15vw, 5.65rem);
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
}

.hero h1 span {
  display: block;
  color: var(--gold-bright);
}

.hero-kicker {
  max-width: 580px;
  margin: 22px 0 0;
  color: #1c2e2b;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-body,
.section-copy p,
.devotion-quote p,
.location-copy p,
.gallery-copy p,
.specs-card p,
.enquire-copy p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.8;
}

.hero-body {
  max-width: 480px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(255, 248, 232, 0.9);
  border-left: 4px solid var(--gold-bright);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
}

.hero-glass-note {
  display: none;
  margin-top: 28px;
  padding: 18px 20px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.34);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(4, 33, 42, 0.76), rgba(90, 24, 23, 0.46));
  box-shadow: 0 20px 42px rgba(4, 31, 38, 0.24);
  backdrop-filter: blur(14px);
}

.hero-glass-note span {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-glass-note strong {
  display: block;
  margin-top: 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.hero-glass-note small {
  display: block;
  margin-top: 6px;
  color: rgba(255, 248, 232, 0.76);
  line-height: 1.45;
}

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

.hero-actions .btn {
  padding-inline: 22px;
}

.hero-media {
  position: relative;
  min-height: 510px;
}

.arch-frame {
  position: relative;
  overflow: hidden;
  border: 3px solid rgba(221, 167, 80, 0.82);
  background: rgba(255, 246, 229, 0.7);
  box-shadow: var(--shadow);
}

.arch-frame::before {
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 247, 220, 0.86);
  content: "";
}

.arch-frame-large {
  height: 510px;
  border-radius: 140px 140px 16px 16px / 112px 112px 16px 16px;
}

.arch-frame-soft {
  height: 460px;
  border-radius: 44px 44px 18px 18px;
}

.arch-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.19, 1, 0.22, 1);
}

.hero-image-context {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 4;
  display: none;
  padding: 16px 18px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.42);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(8, 47, 58, 0.92), rgba(90, 24, 23, 0.74));
  box-shadow: 0 16px 34px rgba(4, 31, 38, 0.24);
  backdrop-filter: blur(12px);
}

.hero-image-context span {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-image-context strong {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-image-context small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 248, 232, 0.78);
}

.arch-frame:hover img {
  transform: scale(1.045);
}

.hero-feather {
  position: absolute;
  top: -36px;
  right: -52px;
  width: 128px;
}

.peacock-feather {
  color: rgba(184, 121, 34, 0.82);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  filter: drop-shadow(0 10px 18px rgba(95, 56, 18, 0.18));
}

.peacock-feather path:nth-child(3) {
  fill: rgba(15, 90, 96, 0.35);
}

.peacock-feather path:nth-child(4) {
  fill: rgba(11, 52, 62, 0.9);
}

.hero-stat-card {
  position: absolute;
  right: 18px;
  bottom: 20px;
  width: min(280px, 60%);
  padding: 18px;
  color: #fff4dc;
  border: 1px solid rgba(239, 186, 94, 0.5);
  border-radius: 8px;
  background: rgba(8, 47, 58, 0.92);
  box-shadow: 0 18px 44px rgba(4, 31, 38, 0.28);
}

.hero-stat-card span,
.mini-label {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-stat-card strong {
  display: block;
  margin-top: 3px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  line-height: 1;
}

.hero-stat-card small {
  display: block;
  margin-top: 7px;
  color: rgba(255, 248, 231, 0.78);
}

.feature-ribbon {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  overflow: hidden;
  color: #fff5de;
  border: 1px solid rgba(222, 170, 91, 0.62);
  border-radius: 8px;
  background: linear-gradient(135deg, #082f3a, #0c4551);
  box-shadow: 0 22px 46px rgba(5, 42, 52, 0.22);
}

.hero .feature-ribbon {
  display: none;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 84px;
  padding: 18px 20px;
  border-right: 1px solid rgba(223, 177, 91, 0.26);
}

.ribbon-item:last-child {
  border-right: 0;
}

.ribbon-item svg {
  flex: 0 0 auto;
  color: var(--gold-bright);
}

.ribbon-item span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.15;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.05fr);
  gap: 72px;
  align-items: center;
}

.about-copy-only {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  text-align: center;
}

.about-copy-only .section-copy h2,
.about-copy-only .section-copy p {
  max-width: none;
}

.about-copy-only .about-company-points {
  max-width: 780px;
  margin-inline: auto;
}

.about-copy-only .about-more-btn {
  margin-inline: auto;
}

.section-copy h2,
.devotion-quote h2,
.location-copy h2,
.gallery-copy h2,
.specs-card h2,
.enquire-copy h2 {
  font-size: clamp(2.6rem, 5vw, 4.25rem);
}

.section-copy h2 {
  max-width: 560px;
}

.section-copy h2::first-line,
.enquire-copy h2::first-line {
  color: #203932;
}

.section-copy p {
  max-width: 536px;
  margin-top: 24px;
}

.about-company-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 620px;
  margin-top: 26px;
}

.about-company-points span {
  min-height: 92px;
  padding: 15px;
  color: var(--muted);
  border: 1px solid rgba(169, 110, 33, 0.2);
  border-radius: 10px;
  background: rgba(255, 249, 239, 0.7);
  font-size: 0.88rem;
  line-height: 1.35;
}

.about-company-points strong {
  display: block;
  margin-bottom: 5px;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.28rem;
  line-height: 1;
}

.about-more-btn {
  margin-top: 26px;
  padding-inline: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.trust-item {
  display: grid;
  gap: 9px;
  justify-items: center;
  min-height: 106px;
  padding: 18px 8px;
  text-align: center;
  color: #55371e;
  border: 1px solid rgba(166, 112, 41, 0.22);
  border-radius: 8px;
  background: rgba(255, 249, 236, 0.66);
}

.trust-item svg {
  color: var(--gold);
}

.trust-item span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.05;
}

.about-art {
  position: relative;
}

.flute-line {
  position: absolute;
  right: -32px;
  bottom: -48px;
  width: 70%;
  color: rgba(171, 103, 29, 0.82);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 7;
  filter: drop-shadow(0 12px 16px rgba(101, 59, 20, 0.2));
}

.section-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 34px;
  color: var(--maroon);
}

.section-title.align-left {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.section-title span {
  width: min(124px, 18vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-title h2 {
  margin: 0;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.projects {
  position: relative;
}

.projects::before,
.amenities::before,
.enquire::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 0% 30%, rgba(9, 83, 96, 0.08), transparent 22rem),
    radial-gradient(circle at 100% 18%, rgba(185, 116, 31, 0.12), transparent 20rem);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.project-tabs {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: -8px 0 28px;
}

.project-tabs::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(430px, 72vw);
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(197, 138, 42, 0.36), transparent);
  content: "";
  transform: translate(-50%, -50%);
}

.project-tabs button {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-width: 116px;
  min-height: 44px;
  color: var(--maroon);
  border: 1px solid rgba(169, 110, 33, 0.28);
  border-radius: 999px;
  background: rgba(255, 249, 239, 0.72);
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  isolation: isolate;
  text-transform: uppercase;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.project-tabs button::before {
  position: absolute;
  inset: -28% -56%;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 34%, rgba(255, 240, 184, 0.28) 48%, transparent 62%);
  content: "";
  transform: translateX(-72%) skewX(-18deg);
}

.project-tabs button.is-active {
  color: #fff8e8;
  border-color: rgba(227, 180, 87, 0.48);
  background: linear-gradient(135deg, var(--maroon), #74221e);
  box-shadow: 0 14px 32px rgba(90, 24, 23, 0.16);
  transform: translateY(-3px);
}

.project-tabs button.is-active::after {
  position: absolute;
  right: 18px;
  bottom: -10px;
  left: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  content: "";
  animation: tabGlow 900ms ease both;
}

.project-tabs button:not(.is-active):hover {
  border-color: rgba(197, 138, 42, 0.48);
  background: rgba(255, 249, 239, 0.92);
  transform: translateY(-2px);
}

.project-tabs button:hover::before,
.project-tabs button.is-active::before {
  animation: buttonShine 900ms ease;
}

.project-panel {
  display: none;
}

.project-panel.is-active {
  display: block;
  animation: projectPanelIn 460ms cubic-bezier(0.22, 0.8, 0.22, 1) both;
}

.project-overview-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 18px;
  align-items: stretch;
}

.project-compact-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.32);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.94), rgba(249, 235, 210, 0.82)),
    radial-gradient(circle at 82% 0%, rgba(227, 180, 87, 0.2), transparent 16rem);
  box-shadow: 0 26px 64px rgba(95, 56, 18, 0.13);
}

.project-compact-card.single {
  max-width: 980px;
  margin-inline: auto;
}

.project-panel[data-project-panel="all"] .project-overview-row {
  grid-template-columns: minmax(0, 1fr);
}

.project-compact-card::before {
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(197, 138, 42, 0.22);
  border-radius: 13px;
  content: "";
}

.project-compact-media {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  background: var(--teal);
}

.project-compact-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 47, 58, 0.74));
  content: "";
}

.project-compact-media img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  transition: transform 650ms ease;
}

.project-compact-card:hover .project-compact-media img {
  transform: scale(1.045);
}

.status-pill {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 13px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.44);
  border-radius: 999px;
  background: rgba(90, 24, 23, 0.78);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.project-compact-body {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(26px, 4vw, 46px);
}

.project-compact-body > span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-compact-body h3 {
  margin: 12px 0 0;
  max-width: 570px;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
  line-height: 0.98;
}

.project-compact-body h3 span {
  display: block;
  white-space: nowrap;
}

.project-compact-body p {
  max-width: 610px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.72;
}

.project-quick-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.project-quick-facts strong {
  padding: 9px 11px;
  color: var(--leaf);
  border: 1px solid rgba(48, 76, 43, 0.16);
  border-radius: 999px;
  background: rgba(48, 76, 43, 0.08);
  font-size: 0.82rem;
}

.project-know-more {
  width: fit-content;
  margin-top: 24px;
  padding-inline: 22px;
}

.sadhna-block-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
}

.sadhna-block-strip div {
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.18);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.78);
}

.sadhna-block-strip img {
  width: 100%;
  aspect-ratio: 16 / 8;
  object-fit: cover;
}

.sadhna-block-strip strong {
  display: block;
  padding: 10px 12px 12px;
  color: #203932;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.14rem;
  line-height: 1;
}

.project-mini-card {
  overflow: hidden;
  min-height: 260px;
  padding: 24px;
  border: 1px solid rgba(169, 110, 33, 0.28);
  border-radius: 16px;
  background: rgba(255, 249, 239, 0.82);
  box-shadow: 0 22px 54px rgba(95, 56, 18, 0.1);
}

.project-mini-card.current {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
}

.project-mini-card img {
  width: 100%;
  height: 100%;
  min-height: 214px;
  object-fit: cover;
  border: 1px solid rgba(169, 110, 33, 0.22);
  border-radius: 12px;
}

.project-mini-card span,
.upcoming-grid span {
  display: block;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-mini-card h3,
.upcoming-grid h3 {
  margin: 8px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.project-mini-card p,
.upcoming-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.empty-mini {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.92), rgba(246, 229, 199, 0.8)),
    radial-gradient(circle at 80% 0%, rgba(197, 138, 42, 0.18), transparent 12rem);
}

.project-mini-card.upcoming {
  display: flex;
  flex-direction: column;
  justify-content: end;
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.92), rgba(246, 229, 199, 0.8)),
    radial-gradient(circle at 80% 0%, rgba(197, 138, 42, 0.2), transparent 12rem);
}

.coming-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: auto;
  color: var(--gold);
  border: 1px solid rgba(169, 110, 33, 0.24);
  border-radius: 50%;
  background: rgba(255, 250, 241, 0.72);
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(410px, 0.78fr);
  gap: 34px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(169, 110, 33, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.92), rgba(249, 235, 210, 0.78)),
    radial-gradient(circle at 12% 0%, rgba(227, 180, 87, 0.18), transparent 18rem);
  box-shadow: 0 26px 70px rgba(95, 56, 18, 0.14);
}

.project-showcase-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.25);
  border-radius: 14px;
  background: var(--teal);
}

.project-main-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.project-showcase-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(8, 47, 58, 0.78));
  content: "";
}

.project-view-stack {
  position: absolute;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: grid;
  gap: 12px;
  width: min(42%, 250px);
}

.project-view-stack img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 2px solid rgba(227, 180, 87, 0.76);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.26);
}

.project-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 20px 20px 8px;
}

.project-showcase-copy h3 {
  margin: 18px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.55rem, 4.5vw, 4.35rem);
  line-height: 0.98;
}

.project-showcase-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.project-visual-summary {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 22px;
  padding: 12px;
  overflow: hidden;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.34);
  border-radius: 14px;
  background: linear-gradient(135deg, #082f3a, #0d4f5d);
  box-shadow: 0 18px 38px rgba(5, 42, 52, 0.16);
}

.project-visual-summary img {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border: 1px solid rgba(227, 180, 87, 0.4);
  border-radius: 10px;
}

.project-visual-summary span {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-visual-summary strong {
  display: block;
  margin-top: 4px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.project-visual-summary p {
  margin-top: 7px;
  color: rgba(255, 248, 232, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.project-keyfacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.project-keyfacts div {
  display: grid;
  gap: 5px;
  min-height: 122px;
  padding: 17px;
  border: 1px solid rgba(169, 110, 33, 0.2);
  border-radius: 10px;
  background: rgba(255, 250, 241, 0.76);
}

.project-keyfacts svg {
  color: var(--gold);
}

.project-keyfacts strong {
  color: #203932;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  line-height: 1;
}

.project-keyfacts span,
.project-experience-row span {
  color: var(--muted);
  font-size: 0.84rem;
}

.project-experience-row {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  margin-top: 18px;
}

.project-experience-row strong {
  padding: 8px 10px;
  color: var(--leaf);
  border: 1px solid rgba(48, 76, 43, 0.16);
  border-radius: 999px;
  background: rgba(48, 76, 43, 0.07);
  font-size: 0.8rem;
}

.project-blocks {
  margin-top: 24px;
}

.project-blocks h4 {
  margin: 0 0 12px;
  color: var(--maroon);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.block-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.block-grid article {
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.22);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.74);
}

.block-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.block-grid strong {
  display: block;
  padding: 12px 12px 3px;
  color: #203932;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  line-height: 1;
}

.block-grid span {
  display: block;
  padding: 0 12px 13px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.upcoming-grid article {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(169, 110, 33, 0.26);
  border-radius: 16px;
  background: rgba(255, 249, 239, 0.82);
  box-shadow: 0 22px 54px rgba(95, 56, 18, 0.1);
}

.empty-state {
  display: grid;
  justify-items: center;
  max-width: 720px;
  margin-inline: auto;
  padding: 54px 28px;
  text-align: center;
  border: 1px dashed rgba(169, 110, 33, 0.34);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.9), rgba(249, 235, 210, 0.78)),
    radial-gradient(circle at 50% 0%, rgba(227, 180, 87, 0.17), transparent 16rem);
  box-shadow: 0 22px 54px rgba(95, 56, 18, 0.08);
}

.empty-state svg {
  width: 54px;
  height: 54px;
  color: var(--gold);
}

.empty-state span {
  margin-top: 18px;
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.empty-state h3 {
  margin: 9px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}

.empty-state p {
  max-width: 540px;
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.upcoming-grid svg {
  color: var(--gold);
  margin-bottom: 34px;
}

.project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.38);
  border-radius: 12px;
  background: rgba(255, 249, 239, 0.86);
  box-shadow: 0 18px 38px rgba(95, 56, 18, 0.12);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.project-card::before {
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(194, 137, 54, 0.36);
  border-radius: 8px;
  content: "";
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 58px rgba(95, 56, 18, 0.18);
}

.project-image {
  height: 236px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms ease;
}

.project-card:hover img {
  transform: scale(1.07);
}

.project-body {
  position: relative;
  z-index: 3;
  padding: 22px 24px 26px;
}

.project-body h3 {
  margin: 0;
  color: #2f2119;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.project-body p {
  margin: 8px 0 0;
  color: var(--muted);
}

.project-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.project-stats span {
  padding: 7px 9px;
  color: var(--leaf);
  border: 1px solid rgba(48, 76, 43, 0.16);
  border-radius: 999px;
  background: rgba(48, 76, 43, 0.07);
  font-size: 0.78rem;
  font-weight: 700;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--maroon);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

.amenity-tile {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 94px;
  padding: 18px 20px;
  color: var(--leaf);
  border: 1px solid rgba(169, 110, 33, 0.24);
  border-radius: 10px;
  background: rgba(255, 249, 239, 0.72);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.amenity-tile svg {
  flex: 0 0 auto;
}

.amenity-tile span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.05;
}

.amenity-tile:hover,
.amenity-tile.is-active {
  transform: translateY(-3px);
  border-color: rgba(197, 138, 42, 0.65);
  background: #fffaf0;
}

.amenity-tile.is-active {
  color: var(--maroon);
  box-shadow: 0 20px 36px rgba(95, 56, 18, 0.12);
}

.amenity-focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  margin-top: 24px;
  padding: 28px 32px;
  overflow: hidden;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.4);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(9, 47, 58, 0.95), rgba(11, 81, 91, 0.92)),
    radial-gradient(circle at 90% 20%, rgba(227, 180, 87, 0.3), transparent 14rem);
}

.amenity-focus h3 {
  margin: 7px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
}

.amenity-focus p {
  max-width: 640px;
  margin: 8px 0 0;
  color: rgba(255, 248, 232, 0.78);
}

.amenity-orbit {
  position: relative;
  width: 142px;
  height: 142px;
  flex: 0 0 auto;
  border: 1px solid rgba(227, 180, 87, 0.35);
  border-radius: 50%;
  animation: rotate 16s linear infinite;
}

.amenity-orbit span {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-bright);
}

.amenity-orbit span:nth-child(1) {
  top: 7px;
  left: 63px;
}

.amenity-orbit span:nth-child(2) {
  right: 14px;
  bottom: 30px;
}

.amenity-orbit span:nth-child(3) {
  left: 18px;
  bottom: 27px;
}

.devotion-strip {
  position: relative;
  padding: 76px 0;
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(8, 47, 58, 0.98), rgba(8, 47, 58, 0.82)),
    url("../assets/night-block.png") center/cover;
}

.devotion-grid {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 60px;
  align-items: center;
}

.devotion-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(227, 180, 87, 0.34);
  border-radius: 20px;
  background: rgba(4, 33, 42, 0.52);
}

.krishna-line {
  position: absolute;
  inset: 18px 12px auto;
  width: calc(100% - 24px);
  color: rgba(227, 180, 87, 0.62);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.devotion-card p {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  margin: 0;
  color: rgba(255, 248, 232, 0.82);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

.devotion-quote h2 {
  color: var(--gold-bright);
}

.devotion-quote p {
  max-width: 690px;
  color: rgba(255, 248, 232, 0.8);
}

.location {
  background: linear-gradient(180deg, #fff8ec, #f7ebd6);
}

.location-feature {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.74fr);
  gap: 40px;
  align-items: stretch;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  color: #fff7df;
  border: 1px solid rgba(227, 180, 87, 0.46);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 14%, rgba(227, 180, 87, 0.18), transparent 18rem),
    linear-gradient(135deg, #082f3a, #0c5060 72%, #062936);
  box-shadow: 0 30px 70px rgba(5, 42, 52, 0.2);
}

.location-feature::before {
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(227, 180, 87, 0.2);
  border-radius: 18px;
  content: "";
}

.location-feature .location-copy {
  position: relative;
  z-index: 2;
  padding: 10px 0;
}

.location-route-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.route-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
  min-height: 106px;
  padding: 18px;
  border: 1px solid rgba(227, 180, 87, 0.28);
  border-radius: 14px;
  background: rgba(255, 248, 232, 0.08);
}

.route-card svg {
  grid-row: span 2;
  color: var(--gold-bright);
}

.route-card span {
  color: rgba(255, 248, 232, 0.78);
}

.route-card strong {
  color: #fff8e8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  line-height: 1;
}

.location-visual-panel {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(227, 180, 87, 0.32);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 248, 232, 0.12), rgba(255, 248, 232, 0.04)),
    radial-gradient(circle at 50% 42%, rgba(227, 180, 87, 0.2), transparent 14rem);
}

.temple-embed {
  position: absolute;
  right: -42px;
  bottom: -30px;
  width: min(112%, 620px);
  color: rgba(227, 180, 87, 0.32);
}

.temple-embed svg {
  display: block;
  width: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.location-detail {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  width: calc(100% - 44px);
  margin: 22px;
  padding: 22px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.34);
  border-radius: 16px;
  background: rgba(4, 33, 42, 0.68);
  backdrop-filter: blur(14px);
}

.location-detail span {
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.location-detail strong {
  display: block;
  margin-top: 5px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  line-height: 1;
}

.location-detail p {
  max-width: 380px;
  margin: 10px 0 0;
  color: rgba(255, 248, 232, 0.76);
  line-height: 1.65;
}

.location-panel {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: center;
  padding: 26px;
  overflow: hidden;
  color: #fff7df;
  border: 1px solid rgba(227, 180, 87, 0.46);
  border-radius: 22px;
  background: linear-gradient(135deg, #082f3a, #0c5060);
  box-shadow: 0 30px 70px rgba(5, 42, 52, 0.2);
}

.location-map-art {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(227, 180, 87, 0.46);
  border-radius: 18px;
  background:
    radial-gradient(circle at 26% 32%, rgba(227, 180, 87, 0.2), transparent 11rem),
    radial-gradient(circle at 84% 15%, rgba(61, 137, 150, 0.34), transparent 14rem),
    linear-gradient(135deg, rgba(255, 248, 232, 0.13), rgba(255, 248, 232, 0.04)),
    #062936;
  box-shadow: inset 0 0 0 1px rgba(255, 248, 232, 0.05);
}

.location-map-art::before {
  position: absolute;
  inset: 22px;
  pointer-events: none;
  border: 1px solid rgba(227, 180, 87, 0.18);
  border-radius: 14px;
  content: "";
}

.location-map-art::after {
  position: absolute;
  inset: auto -10% -22% -10%;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(2, 18, 25, 0.72));
  content: "";
}

.map-sun {
  position: absolute;
  top: 42px;
  right: 58px;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(227, 180, 87, 0.44);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 180, 87, 0.34), rgba(227, 180, 87, 0.06) 64%, transparent 65%);
}

.yamuna-ribbon {
  position: absolute;
  top: 88px;
  left: -24px;
  width: 76%;
  padding: 13px 42px;
  color: rgba(255, 248, 232, 0.9);
  border-top: 1px solid rgba(227, 180, 87, 0.2);
  border-bottom: 1px solid rgba(227, 180, 87, 0.2);
  background: linear-gradient(90deg, rgba(34, 118, 135, 0.35), rgba(34, 118, 135, 0.04));
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: rotate(-5deg);
}

.route-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
}

.route-soft {
  stroke: rgba(227, 180, 87, 0.12);
  stroke-linecap: round;
  stroke-width: 34;
}

.route-main {
  stroke: var(--gold-bright);
  stroke-dasharray: 18 14;
  stroke-linecap: round;
  stroke-width: 7;
  animation: dashFlow 18s linear infinite;
}

.route-secondary {
  stroke: rgba(255, 248, 232, 0.28);
  stroke-linecap: round;
  stroke-width: 3;
}

.home-pin,
.place-pin,
.map-note {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(227, 180, 87, 0.34);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(12px);
}

.home-pin {
  left: 38%;
  top: 42%;
  display: grid;
  justify-items: center;
  gap: 5px;
  width: 172px;
  padding: 17px 14px;
  color: #fff8e8;
  border-radius: 16px;
  background: rgba(90, 24, 23, 0.82);
  transform: translate(-50%, -50%);
}

.home-pin svg {
  color: var(--gold-bright);
}

.home-pin strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  line-height: 1;
  text-align: center;
}

.home-pin span {
  color: rgba(255, 248, 232, 0.72);
  font-size: 0.72rem;
  text-align: center;
}

.place-pin {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 9px;
  min-width: 140px;
  padding: 12px 13px;
  color: #fff8e8;
  border-radius: 12px;
  background: rgba(255, 248, 232, 0.1);
}

.place-pin svg {
  grid-row: span 2;
  margin-top: 2px;
  color: var(--gold-bright);
}

.place-pin span {
  font-size: 0.8rem;
}

.place-pin strong {
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
}

.place-pin.prem {
  right: 42px;
  top: 138px;
}

.place-pin.iskcon {
  right: 122px;
  top: 276px;
}

.place-pin.bankey {
  left: 54px;
  top: 174px;
}

.place-pin.highway {
  left: 74px;
  bottom: 84px;
}

.map-note {
  right: 26px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 298px;
  padding: 16px;
  color: rgba(255, 248, 232, 0.82);
  border-radius: 14px;
  background: rgba(3, 27, 36, 0.7);
  font-size: 0.9rem;
}

.map-note svg {
  flex: 0 0 auto;
  color: var(--gold-bright);
}

.location-copy {
  padding: 18px 18px 18px 0;
}

.location-copy h2 {
  color: var(--gold-bright);
}

.location-copy p {
  color: rgba(255, 248, 232, 0.78);
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.destination {
  padding: 18px;
  border: 1px solid rgba(227, 180, 87, 0.28);
  border-radius: 12px;
  background: rgba(255, 248, 232, 0.08);
}

.destination span {
  display: block;
  color: rgba(255, 248, 232, 0.75);
}

.destination strong {
  display: block;
  margin-top: 2px;
  color: #fff8e8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
}

.destination small {
  display: block;
  color: var(--gold-bright);
}

.gallery-layout {
  display: grid;
  grid-template-columns: 0.54fr 1fr;
  gap: 44px;
  align-items: center;
}

.gallery-copy h2 {
  margin-top: 0;
  color: #203932;
}

.gallery-stage {
  position: relative;
  height: 520px;
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.35);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.gallery-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(0);
  will-change: transform;
}

.gallery-arrow {
  position: absolute;
  top: 0;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 100%;
  transform: none;
  color: rgba(255, 248, 232, 0.94);
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease;
}

.gallery-arrow-prev {
  left: 0;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(90deg, rgba(5, 32, 40, 0.42), rgba(5, 32, 40, 0));
}

.gallery-arrow-next {
  right: 0;
  border-radius: 0 22px 22px 0;
  background: linear-gradient(270deg, rgba(5, 32, 40, 0.42), rgba(5, 32, 40, 0));
}

.gallery-arrow:hover {
  color: #ffe5a8;
  background-color: rgba(8, 40, 48, 0.18);
}

.gallery-arrow svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.45;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.gallery-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.36);
  border-radius: 12px;
  background: rgba(8, 47, 58, 0.88);
  backdrop-filter: blur(14px);
}

.gallery-caption strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1;
}

.gallery-caption span {
  max-width: 360px;
  color: rgba(255, 248, 232, 0.76);
  text-align: right;
}

.home-invest {
  padding-top: 24px;
  padding-bottom: 64px;
}

.home-invest-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 34px;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.home-invest-card::before {
  position: absolute;
  right: 8%;
  bottom: -42px;
  width: min(340px, 32vw);
  aspect-ratio: 1;
  opacity: 0.1;
  background: url("../assets/temple-corner-watermark.png") center/contain no-repeat;
  content: "";
  pointer-events: none;
}

.home-invest-card::after {
  display: none;
}

.home-invest-copy,
.home-invest-card .btn {
  position: relative;
  z-index: 1;
}

.home-invest .ornament {
  color: var(--gold-bright);
}

.home-invest h2 {
  max-width: 680px;
  margin: 16px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.4rem, 4.8vw, 4.35rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0;
}

.home-invest h2::first-line {
  color: #203932;
}

.home-invest p {
  max-width: 610px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
}

.specs {
  background: rgba(255, 250, 241, 0.68);
}

.specs-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 34px;
  align-items: stretch;
}

.specs-visual,
.specs-card {
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.26);
  border-radius: 18px;
  background: #fff8ec;
  box-shadow: 0 20px 46px rgba(95, 56, 18, 0.1);
}

.specs-visual {
  position: relative;
  min-height: 430px;
}

.specs-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.specs-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 36%, rgba(8, 47, 58, 0.82));
  content: "";
}

.finish-chip {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 250px;
  padding: 12px 14px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.36);
  border-radius: 999px;
  background: rgba(8, 47, 58, 0.78);
  box-shadow: 0 16px 34px rgba(4, 31, 38, 0.24);
  backdrop-filter: blur(12px);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.finish-chip svg {
  flex: 0 0 auto;
  color: var(--gold-bright);
}

.chip-one {
  left: 24px;
  bottom: 118px;
}

.chip-two {
  right: 22px;
  bottom: 68px;
}

.chip-three {
  left: 42px;
  bottom: 24px;
}

.specs-card {
  padding: 38px;
}

.spec-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.spec-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(169, 110, 33, 0.16);
}

.spec-row svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--gold);
}

.enquire {
  position: relative;
}

.enquire-grid {
  display: grid;
  grid-template-columns: 0.56fr 1fr;
  gap: 46px;
  align-items: start;
}

.enquire-copy {
  text-align: center;
}

.enquire-copy h2,
.enquire-copy p {
  max-width: 620px;
  margin-right: auto;
  margin-left: auto;
}

.expert-card {
  display: grid;
  gap: 5px;
  width: min(100%, 355px);
  margin-top: 30px;
  padding: 24px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.45);
  border-radius: 12px;
  background: linear-gradient(135deg, var(--maroon), #461210);
  box-shadow: 0 20px 44px rgba(90, 24, 23, 0.18);
}

.expert-card svg,
.expert-card small {
  color: var(--gold-bright);
}

.expert-card strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 18px;
  overflow: hidden;
  padding: clamp(26px, 4vw, 46px);
  color: rgba(255, 248, 232, 0.88);
  border: 1px solid rgba(227, 180, 87, 0.28);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(5, 31, 40, 0.98), rgba(24, 49, 68, 0.96) 52%, rgba(82, 20, 20, 0.86)),
    url("../assets/temple-corner-watermark.png") right bottom/340px auto no-repeat;
  box-shadow: 0 30px 78px rgba(4, 31, 38, 0.22);
}

.form-heading,
.field-message,
.consent-field {
  grid-column: 1 / -1;
}

.enquiry-form .field:has(select) {
  grid-column: 1 / -1;
}

.form-heading {
  max-width: 560px;
  margin-bottom: 4px;
}

.form-heading span,
.field > span {
  display: block;
  color: var(--gold-bright);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.form-heading span {
  font-size: 0.78rem;
}

.form-heading h3 {
  margin: 14px 0 0;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 4.55rem);
  font-weight: 700;
  line-height: 1.02;
  text-wrap: balance;
}

.form-heading p {
  max-width: 520px;
  margin: 16px 0 0;
  color: rgba(255, 248, 232, 0.76);
  font-size: 1.02rem;
  line-height: 1.66;
}

.field {
  position: relative;
  display: grid;
  gap: 9px;
  min-height: auto;
  padding: 0;
  color: rgba(255, 248, 232, 0.8);
  border: 0;
  border-radius: 0;
  background: transparent;
}

.field > span {
  font-size: 0.7rem;
  color: rgba(255, 248, 232, 0.68);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-width: 0;
  min-height: 58px;
  padding: 0 16px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.38);
  border-radius: 9px;
  outline: 0;
  background: rgba(255, 248, 232, 0.055);
  font: inherit;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.field textarea {
  min-height: 108px;
  padding-top: 16px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 248, 232, 0.46);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(227, 180, 87, 0.78);
  background: rgba(255, 248, 232, 0.09);
  box-shadow: 0 0 0 3px rgba(227, 180, 87, 0.1);
}

.field select {
  appearance: none;
}

.select-arrow {
  position: absolute;
  right: 16px;
  bottom: 17px;
  color: #fff8e8;
  pointer-events: none;
}

.consent-field {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 248, 232, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.consent-field input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  accent-color: var(--gold-bright);
}

.form-meter {
  grid-column: 1 / -1;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 248, 232, 0.1);
}

.form-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-bright), #fff0b8);
  transition: width 240ms ease;
}

.form-submit,
.success-note {
  grid-column: 1 / -1;
}

.form-submit {
  width: 100%;
  min-height: 60px;
  margin-top: 2px;
  border-radius: 9px;
  color: #fff8e8;
}

.success-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 14px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.24);
  border-radius: 8px;
  background: rgba(48, 76, 43, 0.25);
  font-weight: 700;
}

.site-footer {
  color: rgba(255, 248, 232, 0.76);
  border-top: 4px solid var(--gold);
  background:
    radial-gradient(circle at 88% 18%, rgba(227, 180, 87, 0.12), transparent 20rem),
    radial-gradient(circle at 6% 92%, rgba(207, 143, 41, 0.14), transparent 18rem),
    linear-gradient(145deg, #4b120f 0%, #2b0908 54%, #160302 100%);
}

.footer-reach {
  display: grid;
  grid-template-columns: minmax(420px, 0.92fr) minmax(520px, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding: clamp(52px, 6vw, 76px) 0 34px;
}

.footer-intro > span,
.footer-link-columns h3 {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1rem, 1.45vw, 1.36rem);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-intro h2 {
  max-width: 680px;
  margin: 0 0 16px;
  color: #fffaf0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 4vw, 4.05rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.98;
}

.footer-intro > p {
  margin: 0 0 clamp(32px, 4vw, 50px);
  color: rgba(255, 248, 232, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.34rem);
  line-height: 1.45;
}

.footer-contact-list {
  display: grid;
  gap: clamp(16px, 2.2vw, 28px);
  max-width: 760px;
}

.footer-contact-list p {
  margin: 0;
  color: rgba(255, 248, 232, 0.72);
  font-size: clamp(1rem, 1.35vw, 1.36rem);
  line-height: 1.55;
}

.footer-contact-list strong {
  color: #fff7df;
  font-weight: 800;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3.2vw, 52px);
  align-self: start;
  padding-top: 8px;
}

.footer-link-columns div {
  display: grid;
  align-content: start;
  gap: 15px;
}

.footer-link-columns h3 {
  margin-bottom: 10px;
}

.footer-link-columns a {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  color: rgba(255, 248, 232, 0.76);
  font-size: clamp(0.96rem, 1.05vw, 1.12rem);
  font-weight: 650;
  line-height: 1.35;
}

.footer-link-columns a:hover {
  color: #fffaf0;
}

.socials {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 28px);
  margin-top: clamp(22px, 3vw, 34px);
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  color: var(--gold-bright);
  border: 0;
  border-radius: 0;
  background: transparent;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
  transition: color 180ms ease, transform 180ms ease;
}

.socials a:hover {
  color: #fff8e8;
  transform: translateY(-2px);
}

.socials svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.socials .social-fill {
  fill: currentColor;
  stroke: none;
}

.footer-bottom {
  display: block;
  padding: 24px 0 32px;
  border-top: 1px solid rgba(227, 180, 87, 0.18);
  color: rgba(255, 248, 232, 0.62);
  font-size: clamp(0.9rem, 1vw, 1rem);
}

.legal-shell .site-header {
  position: sticky;
}

.invest-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  padding: 150px 0 76px;
  overflow: hidden;
  isolation: isolate;
  color: #fff8e8;
  background: #041e28;
}

.invest-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.invest-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.invest-hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 24, 0.9) 0%, rgba(4, 18, 24, 0.66) 48%, rgba(4, 18, 24, 0.18) 100%),
    linear-gradient(180deg, rgba(4, 18, 24, 0.08) 0%, rgba(4, 18, 24, 0.84) 100%);
  content: "";
}

.invest-hero-inner {
  width: min(760px, calc(100% - 128px));
  max-width: 760px;
  margin-left: max(64px, calc((100vw - var(--container)) / 2 + 44px));
}

.invest-hero h1,
.invest-intro-copy h2,
.invest-process-copy h2,
.invest-current-card h2,
.invest-cta-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

.invest-hero h1 {
  max-width: 780px;
  color: #fff8e8;
  font-size: clamp(3.7rem, 7vw, 6.45rem);
  text-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.invest-hero h1::first-line {
  color: var(--gold-bright);
}

.invest-hero p {
  max-width: 620px;
  margin: 24px 0 0;
  padding-left: 18px;
  color: rgba(255, 248, 232, 0.86);
  border-left: 4px solid var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1.78;
}

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

.invest-hero .btn-ghost {
  color: #fff8e8;
  border-color: rgba(255, 248, 232, 0.28);
  background: rgba(255, 248, 232, 0.08);
  backdrop-filter: blur(10px);
}

.invest-intro-grid,
.invest-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: 58px;
  align-items: center;
}

.invest-intro-copy h2,
.invest-process-copy h2,
.invest-current-card h2,
.invest-cta-panel h2 {
  max-width: 760px;
  margin-top: 18px;
  color: var(--maroon);
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
}

.invest-intro-copy h2::first-line,
.invest-process-copy h2::first-line,
.invest-current-card h2::first-line {
  color: #203932;
}

.invest-intro-copy p,
.invest-process-copy p,
.invest-current-card p,
.invest-cta-panel p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.82;
}

.invest-note-card {
  padding: 30px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.28);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(5, 45, 55, 0.96), rgba(90, 24, 23, 0.82));
  box-shadow: 0 26px 64px rgba(4, 31, 38, 0.2);
}

.invest-note-card svg,
.invest-pillar-grid svg {
  color: var(--gold-bright);
}

.invest-note-card h3,
.invest-pillar-grid h3 {
  margin: 18px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.invest-note-card p {
  margin: 14px 0 0;
  color: rgba(255, 248, 232, 0.76);
  line-height: 1.7;
}

.invest-pillars {
  color: #fff8e8;
  background:
    linear-gradient(135deg, rgba(4, 31, 38, 0.96), rgba(9, 73, 86, 0.9)),
    url("../assets/night-block.png") center/cover;
}

.invest-pillars .section-title {
  color: var(--gold-bright);
}

.invest-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.invest-pillar-grid article {
  min-height: 286px;
  padding: 28px;
  border: 1px solid rgba(227, 180, 87, 0.24);
  border-radius: 16px;
  background: rgba(255, 248, 232, 0.07);
  backdrop-filter: blur(10px);
}

.invest-pillar-grid p {
  margin: 14px 0 0;
  color: rgba(255, 248, 232, 0.74);
  line-height: 1.72;
}

.invest-process {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.86), rgba(255, 244, 224, 0.78));
}

.invest-steps {
  display: grid;
  gap: 12px;
}

.invest-steps div {
  padding: 22px;
  border: 1px solid rgba(169, 110, 33, 0.2);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.72);
}

.invest-steps b {
  display: block;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.1rem;
  line-height: 1;
}

.invest-steps strong,
.invest-steps span {
  display: block;
}

.invest-steps strong {
  margin-top: 10px;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

.invest-steps span {
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.55;
}

.invest-current-card {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(169, 110, 33, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.94), rgba(255, 244, 224, 0.72));
  box-shadow: 0 26px 68px rgba(95, 56, 18, 0.12);
}

.invest-current-card > div > span,
.invest-cta-panel > span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.invest-current-card .btn {
  margin-top: 26px;
}

.invest-current-card img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
  border: 1px solid rgba(169, 110, 33, 0.24);
  border-radius: 18px;
}

.invest-cta {
  padding-top: 0;
}

.invest-cta-panel {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(34px, 5vw, 64px);
  text-align: center;
  border: 1px solid rgba(169, 110, 33, 0.24);
  border-radius: 22px;
  background: rgba(255, 249, 239, 0.82);
  box-shadow: 0 24px 64px rgba(95, 56, 18, 0.12);
}

.invest-cta-panel h2,
.invest-cta-panel p {
  margin-right: auto;
  margin-left: auto;
}

.invest-cta-panel .btn {
  margin-top: 26px;
  min-width: 230px;
  justify-content: center;
}

.legal-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 520px;
  padding: 150px 0 70px;
  overflow: hidden;
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(4, 22, 28, 0.92), rgba(85, 21, 18, 0.76)),
    url("../assets/desktop-hero-image.png") center/cover;
}

.legal-hero::after {
  position: absolute;
  right: -110px;
  bottom: -120px;
  width: min(440px, 46vw);
  aspect-ratio: 1;
  opacity: 0.32;
  background: url("../assets/temple-corner-watermark.png") center/contain no-repeat;
  content: "";
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
}

.legal-hero-inner > span {
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 760px;
  margin: 14px 0 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  line-height: 0.9;
}

.legal-hero p {
  max-width: 700px;
  margin: 0 0 18px;
  color: rgba(255, 248, 232, 0.82);
  font-size: clamp(1.05rem, 1.5vw, 1.32rem);
  line-height: 1.65;
}

.legal-hero small {
  color: rgba(227, 180, 87, 0.86);
  font-weight: 700;
}

.legal-section {
  background:
    radial-gradient(circle at 100% 18%, rgba(197, 138, 42, 0.1), transparent 22rem),
    var(--cream);
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(169, 110, 33, 0.2);
  border-radius: 18px;
  background: rgba(255, 249, 239, 0.78);
  box-shadow: 0 18px 45px rgba(95, 56, 18, 0.08);
}

.legal-nav a {
  padding: 12px 14px;
  color: var(--ink);
  border-radius: 12px;
  font-weight: 700;
}

.legal-nav a.is-active,
.legal-nav a:hover {
  color: #fff8e8;
  background: linear-gradient(135deg, var(--maroon), #74221e);
}

.legal-card {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(169, 110, 33, 0.2);
  border-radius: 24px;
  background: rgba(255, 249, 239, 0.82);
  box-shadow: 0 24px 62px rgba(95, 56, 18, 0.1);
}

.legal-card h2 {
  margin: 0 0 12px;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.legal-card h2:not(:first-child) {
  margin-top: 42px;
}

.legal-card p {
  margin: 0 0 16px;
  color: rgba(24, 37, 36, 0.74);
  font-size: 1.02rem;
  line-height: 1.82;
}

.legal-card a {
  color: var(--maroon);
  font-weight: 800;
}

.floating-call {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.52);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), #37100d);
  box-shadow: 0 18px 42px rgba(90, 24, 23, 0.26);
}

.temple-corner-embed {
  position: fixed;
  right: -72px;
  bottom: -92px;
  z-index: 0;
  width: clamp(270px, 25vw, 420px);
  max-width: none;
  pointer-events: none;
  opacity: var(--temple-watermark-opacity, 0.54);
  filter: drop-shadow(0 16px 28px rgba(95, 56, 18, 0.12));
  transition: opacity 220ms ease, transform 220ms ease;
}

.temple-corner-embed.is-hidden {
  --temple-watermark-opacity: 0;
  transform: translateY(18px);
}

.about-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 760px;
  padding: 150px 0 76px;
  overflow: hidden;
  isolation: isolate;
  color: #fff8e8;
  background: #041e28;
}

.about-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 18, 24, 0.88) 0%, rgba(4, 18, 24, 0.62) 44%, rgba(4, 18, 24, 0.2) 100%),
    linear-gradient(180deg, rgba(4, 18, 24, 0.08) 0%, rgba(4, 18, 24, 0.8) 100%);
  content: "";
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.48fr);
  gap: 42px;
  align-items: end;
}

.about-hero-copy h1,
.about-story-copy h2,
.about-focus-copy h2,
.about-cta-panel h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

.about-hero-copy h1 {
  max-width: 760px;
  color: #fff8e8;
  font-size: clamp(3.7rem, 7vw, 6.6rem);
  text-shadow: 0 20px 46px rgba(0, 0, 0, 0.34);
}

.about-hero-copy h1::first-line {
  color: var(--gold-bright);
}

.about-hero-copy p {
  max-width: 620px;
  margin: 22px 0 0;
  padding-left: 18px;
  color: rgba(255, 248, 232, 0.86);
  border-left: 4px solid var(--gold-bright);
  font-size: 1.05rem;
  line-height: 1.78;
}

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

.about-hero .btn-ghost {
  color: #fff8e8;
  border-color: rgba(255, 248, 232, 0.28);
  background: rgba(255, 248, 232, 0.08);
  backdrop-filter: blur(10px);
}

.about-hero-panel {
  position: relative;
  padding: 24px;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.38);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(5, 45, 55, 0.82), rgba(90, 24, 23, 0.48));
  box-shadow: 0 28px 70px rgba(2, 19, 24, 0.34);
  backdrop-filter: blur(14px);
}

.about-hero-panel span,
.about-cta-panel span {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.about-hero-panel strong {
  display: block;
  margin-top: 10px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.04;
}

.about-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 22px;
  overflow: hidden;
  border: 1px solid rgba(227, 180, 87, 0.28);
  border-radius: 12px;
}

.about-hero-metrics div {
  min-height: 110px;
  padding: 14px;
  background: rgba(255, 248, 232, 0.06);
}

.about-hero-metrics b {
  display: block;
  color: var(--gold-bright);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.about-hero-metrics small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 248, 232, 0.74);
  line-height: 1.35;
}

.about-story-grid,
.about-focus-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.52fr);
  gap: 56px;
  align-items: center;
}

.about-story-copy h2,
.about-focus-copy h2,
.about-cta-panel h2 {
  max-width: 720px;
  margin-top: 18px;
  color: var(--maroon);
  font-size: clamp(2.7rem, 5.2vw, 4.9rem);
}

.about-story-copy h2::first-line,
.about-focus-copy h2::first-line {
  color: #203932;
}

.about-story-copy p,
.about-focus-copy p,
.about-cta-panel p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.82;
}

.about-story-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.24);
  border-radius: 20px;
  background: rgba(255, 249, 239, 0.72);
  box-shadow: 0 24px 64px rgba(95, 56, 18, 0.14);
}

.about-story-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

.about-story-card div {
  padding: 24px;
}

.about-story-card svg,
.about-strength-grid svg,
.values-grid svg {
  color: var(--gold);
}

.about-story-card span {
  display: block;
  margin-top: 10px;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.about-story-card p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.about-dark-band {
  color: #fff8e8;
  background:
    linear-gradient(135deg, rgba(4, 31, 38, 0.94), rgba(9, 73, 86, 0.88)),
    url("../assets/night-block.png") center/cover;
}

.about-dark-band .section-title {
  color: var(--gold-bright);
}

.about-strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-strength-grid article {
  min-height: 270px;
  padding: 28px;
  border: 1px solid rgba(227, 180, 87, 0.24);
  border-radius: 16px;
  background: rgba(255, 248, 232, 0.07);
  backdrop-filter: blur(10px);
}

.about-strength-grid h3 {
  margin: 28px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.about-strength-grid p {
  margin: 14px 0 0;
  color: rgba(255, 248, 232, 0.76);
  line-height: 1.72;
}

.region-stack {
  display: grid;
  gap: 14px;
}

.region-stack div {
  padding: 22px;
  border: 1px solid rgba(169, 110, 33, 0.22);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 249, 239, 0.94), rgba(249, 235, 210, 0.78));
  box-shadow: 0 18px 44px rgba(95, 56, 18, 0.09);
}

.region-stack strong,
.values-grid strong {
  display: block;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.75rem;
  line-height: 1;
}

.region-stack span,
.values-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.65;
}

.about-values {
  background: rgba(255, 248, 236, 0.62);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.values-grid div {
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(169, 110, 33, 0.2);
  border-radius: 14px;
  background: rgba(255, 249, 239, 0.76);
}

.values-grid strong {
  margin-top: 22px;
}

.about-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.42);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(4, 31, 38, 0.92), rgba(90, 24, 23, 0.72)),
    url("../assets/green-walkway.png") center/cover;
  box-shadow: 0 24px 64px rgba(95, 56, 18, 0.18);
}

.about-cta-panel h2 {
  color: #fff8e8;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.about-cta-panel p {
  color: rgba(255, 248, 232, 0.78);
}

.project-detail-hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 720px;
  padding: 132px 0 74px;
  overflow: hidden;
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(4, 18, 24, 0.86) 0%, rgba(4, 18, 24, 0.62) 46%, rgba(4, 18, 24, 0.22) 100%),
    url("../assets/green-walkway.png") center/cover;
}

.project-detail-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(4, 18, 24, 0.78));
  content: "";
}

.detail-hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 20%, rgba(227, 180, 87, 0.24), transparent 18rem),
    radial-gradient(circle at 18% 76%, rgba(12, 83, 96, 0.4), transparent 22rem);
}

.detail-hero-content {
  position: relative;
  z-index: 2;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255, 248, 232, 0.82);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-status {
  display: block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-detail-hero h1,
.detail-panel h2,
.detail-cta-inner h2 {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
}

.project-detail-hero h1 {
  max-width: 780px;
  color: #fff8e8;
  font-size: clamp(4.2rem, 8vw, 8rem);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
}

.project-detail-hero p {
  max-width: 670px;
  margin: 24px 0 0;
  color: rgba(255, 248, 232, 0.86);
  font-size: 1.15rem;
  line-height: 1.75;
}

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

.detail-hero-actions .btn {
  padding-inline: 22px;
}

.project-detail-hero .btn-ghost {
  color: #fff8e8;
  border-color: rgba(255, 248, 232, 0.36);
  background: rgba(255, 248, 232, 0.12);
  backdrop-filter: blur(12px);
}

.detail-facts-strip {
  margin-top: -42px;
  position: relative;
  z-index: 5;
}

.detail-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.42);
  border-radius: 18px;
  background: linear-gradient(135deg, #082f3a, #0c5060);
  box-shadow: 0 24px 54px rgba(5, 42, 52, 0.22);
}

.detail-facts-grid div {
  display: grid;
  gap: 5px;
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid rgba(227, 180, 87, 0.22);
}

.detail-facts-grid div:last-child {
  border-right: 0;
}

.detail-facts-grid svg {
  color: var(--gold-bright);
}

.detail-facts-grid span {
  color: rgba(255, 248, 232, 0.68);
  font-size: 0.82rem;
}

.detail-facts-grid strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1;
}

.detail-section {
  position: relative;
}

.project-block-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.detail-block-card {
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.26);
  border-radius: 18px;
  background: rgba(255, 249, 239, 0.86);
  box-shadow: 0 22px 52px rgba(95, 56, 18, 0.1);
}

.detail-block-card img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.detail-block-card div {
  padding: 22px;
}

.detail-block-card span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-block-card h3 {
  margin: 8px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.05rem;
  line-height: 1;
}

.detail-block-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.single-building-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1fr);
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.94), rgba(255, 244, 224, 0.72));
  box-shadow: 0 26px 68px rgba(95, 56, 18, 0.12);
}

.single-building-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.single-building-media::after {
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent, rgba(6, 42, 50, 0.38));
  content: "";
}

.single-building-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-building-copy {
  align-self: center;
  padding: clamp(28px, 4.4vw, 58px);
}

.single-building-copy > span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.single-building-copy h3 {
  max-width: 620px;
  margin: 12px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.55rem, 4.6vw, 4.5rem);
  line-height: 0.98;
}

.single-building-copy h3::first-line {
  color: #203932;
}

.single-building-copy p {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.single-building-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.single-building-points div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(169, 110, 33, 0.18);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.64);
}

.single-building-points svg {
  color: var(--gold);
}

.single-building-points strong,
.single-building-points small {
  display: block;
}

.single-building-points strong {
  margin-top: 10px;
  color: #203932;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.05;
}

.single-building-points small {
  margin-top: 6px;
  color: var(--muted);
  line-height: 1.35;
}

.detail-dark {
  color: #fff8e8;
  background:
    linear-gradient(90deg, rgba(8, 47, 58, 0.98), rgba(8, 47, 58, 0.9)),
    url("../assets/night-block.png") center/cover;
}

.detail-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 36px;
  align-items: stretch;
}

.detail-two-col.reverse {
  grid-template-columns: minmax(360px, 0.8fr) minmax(0, 1fr);
}

.detail-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(227, 180, 87, 0.34);
  border-radius: 20px;
  background: rgba(4, 33, 42, 0.64);
  box-shadow: 0 24px 60px rgba(4, 31, 38, 0.22);
  backdrop-filter: blur(12px);
}

.detail-panel .ornament {
  justify-content: center;
}

.detail-panel.light {
  color: var(--ink);
  background: rgba(255, 249, 239, 0.86);
  border-color: rgba(169, 110, 33, 0.24);
  box-shadow: 0 22px 52px rgba(95, 56, 18, 0.1);
}

.detail-panel h2 {
  max-width: 760px;
  color: var(--gold-bright);
  font-size: clamp(2.8rem, 5.4vw, 5rem);
}

.detail-panel.light h2 {
  color: var(--maroon);
}

.detail-panel p {
  max-width: 680px;
  margin: 22px 0 0;
  color: rgba(255, 248, 232, 0.78);
  font-size: 1.04rem;
  line-height: 1.8;
}

.detail-panel.light p {
  color: var(--muted);
}

.detail-amenity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.detail-amenity-grid span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid rgba(227, 180, 87, 0.22);
  border-radius: 12px;
  background: rgba(255, 248, 232, 0.08);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.16rem;
  font-weight: 700;
}

.detail-amenity-grid svg {
  flex: 0 0 auto;
  color: var(--gold-bright);
}

.detail-temple-card {
  position: relative;
  overflow: hidden;
  min-height: 440px;
  border: 1px solid rgba(227, 180, 87, 0.34);
  border-radius: 20px;
  background:
    radial-gradient(circle at 52% 42%, rgba(227, 180, 87, 0.16), transparent 14rem),
    rgba(4, 33, 42, 0.58);
}

.detail-temple-card svg {
  position: absolute;
  right: -32px;
  bottom: 22px;
  width: 110%;
  color: rgba(227, 180, 87, 0.38);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 7;
}

.detail-temple-card p {
  position: absolute;
  right: 22px;
  bottom: 22px;
  left: 22px;
  margin: 0;
  padding: 18px;
  color: rgba(255, 248, 232, 0.82);
  border: 1px solid rgba(227, 180, 87, 0.24);
  border-radius: 14px;
  background: rgba(3, 27, 36, 0.64);
  backdrop-filter: blur(10px);
}

.detail-location-card {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(169, 110, 33, 0.28);
  border-radius: 20px;
  background: var(--teal);
  box-shadow: 0 22px 52px rgba(95, 56, 18, 0.12);
}

.detail-location-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.detail-location-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.detail-location-list div {
  padding: 18px;
  border: 1px solid rgba(169, 110, 33, 0.2);
  border-radius: 12px;
  background: rgba(255, 250, 241, 0.72);
}

.detail-location-list span {
  display: block;
  color: var(--muted);
}

.detail-location-list strong {
  display: block;
  margin-top: 4px;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
}

.detail-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(227, 180, 87, 0.18), transparent 20rem),
    linear-gradient(180deg, #fff8ec, #f7ebd6);
}

.detail-cta-inner {
  max-width: 880px;
  text-align: center;
}

.detail-cta-inner span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.detail-cta-inner h2 {
  color: var(--maroon);
  font-size: clamp(3rem, 6vw, 5.3rem);
}

.detail-cta-inner p {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.detail-cta-inner .btn {
  margin-top: 28px;
  padding-inline: 28px;
}

.project-gallery-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.88), rgba(248, 236, 215, 0.74));
}

.project-gallery-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
}

.project-gallery-card {
  position: relative;
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.28);
  border-radius: 20px;
  background: #082f3a;
  box-shadow: 0 24px 58px rgba(95, 56, 18, 0.12);
}

.project-gallery-card.large {
  grid-row: span 2;
  min-height: 680px;
}

.project-gallery-card::after {
  display: none;
  content: none;
}

.project-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-gallery-card video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  object-position: center;
  background: #082f3a;
}

.project-gallery-video-card video {
  transform: scale(1.035);
}

.project-gallery-card figcaption {
  display: none;
}

.project-gallery-card span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.project-gallery-card strong {
  display: block;
  margin-top: 7px;
  color: #fff8e8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.05;
}

.floating-motifs {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.motif {
  position: absolute;
  color: rgba(197, 138, 42, 0.42);
}

.lotus-a {
  top: 20%;
  left: 6%;
  font-size: 2.2rem;
  animation: float 7s ease-in-out infinite;
}

.lotus-b {
  top: 46%;
  right: 8%;
  font-size: 2.8rem;
  animation: float 9s ease-in-out infinite reverse;
}

.lotus-c {
  right: 36%;
  bottom: 17%;
  font-size: 1.8rem;
  animation: float 8s ease-in-out infinite;
}

.line-a,
.line-b {
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 138, 42, 0.5), transparent);
}

.line-a {
  top: 31%;
  left: 28%;
  transform: rotate(-18deg);
}

.line-b {
  right: 20%;
  bottom: 30%;
  transform: rotate(16deg);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 560ms ease, transform 560ms ease;
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.035);
  }
}

@keyframes heroCarouselFade {
  0% {
    opacity: 0;
    transform: scale(1.03) translateX(1%);
  }

  5% {
    opacity: 1;
  }

  32% {
    opacity: 1;
  }

  38% {
    opacity: 0;
    transform: scale(1.075) translateX(-1%);
  }

  100% {
    opacity: 0;
    transform: scale(1.075) translateX(-1%);
  }
}

@keyframes heroCarouselFirstFade {
  0% {
    opacity: 1;
    transform: scale(1.03) translateX(1%);
  }

  32% {
    opacity: 1;
  }

  38% {
    opacity: 0;
    transform: scale(1.075) translateX(-1%);
  }

  95% {
    opacity: 0;
    transform: scale(1.03) translateX(1%);
  }

  100% {
    opacity: 1;
    transform: scale(1.03) translateX(1%);
  }
}

@keyframes heroCarouselProgress {
  0% {
    transform: scaleX(0);
  }

  32% {
    transform: scaleX(1);
  }

  38%,
  100% {
    transform: scaleX(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
  50% {
    transform: translate3d(0, -18px, 0) rotate(4deg);
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes buttonShine {
  0% {
    transform: translateX(-72%) skewX(-18deg);
  }

  100% {
    transform: translateX(72%) skewX(-18deg);
  }
}

@keyframes tabGlow {
  0% {
    opacity: 0;
    transform: scaleX(0.35);
  }

  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes projectPanelIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes dashFlow {
  to {
    stroke-dashoffset: -220;
  }
}

@media (min-width: 1041px) {
  :root {
    --container: 1380px;
  }

  .container {
    width: min(var(--container), calc(100% - 44px));
  }

  #about-us.section-pad {
    padding: 76px 0 42px;
  }

  #projects.section-pad {
    padding: 50px 0 66px;
  }

  #gallery.section-pad {
    padding: 76px 0 60px;
  }

  .home-invest.section-pad {
    padding: 44px 0 54px;
  }

  #enquire.section-pad {
    padding: 76px 0 90px;
  }

  #about-us {
    background:
      radial-gradient(circle at 86% 16%, rgba(197, 138, 42, 0.12), transparent 24rem),
      linear-gradient(180deg, rgba(255, 250, 241, 0.98), rgba(250, 239, 218, 0.7));
  }

  #projects {
    background:
      linear-gradient(180deg, rgba(250, 239, 218, 0.62), rgba(255, 250, 241, 0.96));
  }

  #gallery {
    background:
      radial-gradient(circle at 18% 10%, rgba(197, 138, 42, 0.1), transparent 22rem),
      linear-gradient(180deg, rgba(255, 250, 241, 0.96), rgba(250, 239, 218, 0.56));
  }

  .home-invest {
    background:
      linear-gradient(180deg, rgba(255, 250, 241, 0.92), rgba(255, 246, 231, 0.78));
  }

  .site-header {
    position: fixed;
    top: 18px;
    right: 0;
    left: 0;
    border-bottom: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    pointer-events: none;
  }

  .header-inner {
    width: min(1220px, calc(100% - 44px));
    min-height: 78px;
    padding: 10px 14px 10px 16px;
    border: 1px solid rgba(197, 138, 42, 0.28);
    border-radius: 10px;
    background:
      linear-gradient(105deg, rgba(255, 250, 241, 0.94), rgba(255, 248, 236, 0.78)),
      radial-gradient(circle at 12% 48%, rgba(197, 138, 42, 0.16), transparent 15rem);
    box-shadow: 0 18px 55px rgba(42, 25, 9, 0.16);
    backdrop-filter: blur(22px);
    pointer-events: auto;
  }

  .header-inner::after {
    display: none;
  }

  .brand {
    width: 190px;
    gap: 13px;
  }

  .brand img {
    width: 184px;
  }

  .brand::before {
    left: -4px;
    height: 44px;
    opacity: 0.72;
  }

  .brand::after {
    display: none;
    content: none;
  }

  .desktop-nav {
    flex: 0 1 auto;
    max-width: none;
    margin-inline: auto;
    gap: clamp(18px, 2.2vw, 34px);
  }

  .desktop-nav a {
    padding: 12px 0;
    color: #192b2a;
    font-size: 0.68rem;
    letter-spacing: 0.01em;
  }

  .desktop-nav a::after {
    bottom: 4px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-bright), rgba(90, 24, 23, 0.72));
  }

  .desktop-nav a:hover {
    color: var(--maroon);
  }

  .btn-nav {
    min-height: 50px;
    padding-inline: 24px;
    border-radius: 8px;
    box-shadow: 0 14px 28px rgba(90, 24, 23, 0.18);
  }

  .hero {
    min-height: clamp(660px, 76vh, 760px);
    padding-top: 126px;
  }

  .hero-copy {
    max-width: 610px;
    margin-left: clamp(58px, 6.2vw, 118px);
  }

  .hero h1 {
    max-width: 590px;
    font-size: clamp(3.75rem, 5.4vw, 5.55rem);
  }

  .feature-ribbon {
    width: min(680px, 52vw);
    margin-top: 28px;
    margin-left: auto;
  }

  .ribbon-item {
    justify-content: center;
    min-height: 72px;
    padding: 14px 16px;
  }

  .ribbon-item span {
    font-size: 1rem;
  }

  .about-copy-only {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-copy-only .section-copy {
    display: grid;
    grid-template-columns: minmax(560px, 1fr) minmax(380px, 0.62fr);
    gap: 20px 72px;
    align-items: center;
    max-width: 1280px;
    margin-inline: auto;
    padding: 52px 58px;
    text-align: left;
    border-top: 1px solid rgba(197, 138, 42, 0.22);
    border-bottom: 1px solid rgba(197, 138, 42, 0.16);
    background:
      radial-gradient(circle at 92% 16%, rgba(197, 138, 42, 0.12), transparent 17rem),
      linear-gradient(90deg, rgba(255, 249, 239, 0.78), rgba(255, 248, 236, 0.22));
  }

  .about-copy-only .ornament {
    grid-column: 1 / -1;
    justify-content: flex-start;
  }

  .about-copy-only .section-copy h2 {
    grid-column: 1;
    grid-row: 2 / span 3;
    max-width: 760px;
    margin-top: 8px;
    font-size: clamp(3.35rem, 4.9vw, 5.05rem);
    line-height: 0.96;
  }

  .about-copy-only .section-copy p {
    grid-column: 2;
    max-width: 540px;
    margin-top: 0;
    font-size: 1.04rem;
    line-height: 1.78;
  }

  .about-copy-only .about-company-points {
    grid-column: 2;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin: 6px 0 0;
  }

  .about-copy-only .about-company-points span {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 28px;
    border-color: rgba(197, 138, 42, 0.32);
    background: rgba(255, 250, 241, 0.7);
  }

  .about-copy-only .about-company-points strong {
    font-size: 1.85rem;
  }

  .about-copy-only .about-more-btn {
    grid-column: 2;
    width: fit-content;
    min-height: 54px;
    margin: 2px 0 0;
    padding-inline: 28px;
  }

  .project-tabs {
    margin-bottom: 30px;
  }

  .project-compact-card {
    width: 100%;
    max-width: 390px;
    margin-inline: 0;
    grid-template-columns: 1fr;
  }

  .project-overview-row,
  .project-panel[data-project-panel="all"] .project-overview-row {
    grid-template-columns: repeat(auto-fit, minmax(320px, 390px));
    justify-content: start;
    max-width: 1280px;
    gap: 24px;
    margin-inline: auto;
  }

  .project-panel[data-project-panel="current"].is-active {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 390px));
    justify-content: start;
    gap: 24px;
    max-width: 1280px;
    margin-inline: auto;
  }

  .project-compact-media,
  .project-compact-media img {
    min-height: 232px;
  }

  .project-compact-body {
    padding: 24px 26px 26px;
  }

  .project-compact-body h3 {
    font-size: clamp(2rem, 2.2vw, 2.45rem);
    line-height: 1;
  }

  .project-compact-body p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .gallery-layout {
    grid-template-columns: minmax(330px, 0.42fr) minmax(0, 1fr);
    gap: 64px;
    max-width: 1280px;
  }

  .gallery-stage {
    height: 520px;
  }

  .home-invest-card {
    max-width: 1180px;
    margin-inline: auto;
    padding: 34px 44px;
    border-top: 1px solid rgba(197, 138, 42, 0.22);
    border-bottom: 1px solid rgba(197, 138, 42, 0.16);
    background:
      radial-gradient(circle at 92% 45%, rgba(197, 138, 42, 0.09), transparent 20rem),
      linear-gradient(90deg, rgba(255, 249, 239, 0.54), rgba(255, 248, 236, 0.1));
  }

  .home-invest-card::before {
    right: 18%;
    bottom: -74px;
    width: min(300px, 24vw);
    opacity: 0.08;
  }

  .home-invest h2 {
    margin-top: 12px;
    font-size: clamp(3.1rem, 3.8vw, 4.25rem);
  }

  .home-invest p {
    margin-top: 12px;
    max-width: 660px;
  }

  .home-invest-card .btn {
    min-width: 176px;
    align-self: center;
  }

  .enquire-grid {
    grid-template-columns: minmax(380px, 0.46fr) minmax(620px, 0.72fr);
    gap: 70px;
    align-items: center;
    max-width: 1260px;
  }

  .enquire-copy {
    text-align: left;
  }

  .enquire-copy .ornament {
    justify-content: flex-start;
  }

  .enquire-copy h2,
  .enquire-copy p {
    margin-left: 0;
    margin-right: 0;
  }

  .enquire-copy h2 {
    max-width: 520px;
    font-size: clamp(3.2rem, 4.7vw, 4.6rem);
  }

  .enquire-copy p {
    max-width: 500px;
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .btn-nav {
    display: none;
  }

  .mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid rgba(169, 110, 33, 0.18);
    background: rgba(255, 248, 236, 0.96);
    transition: max-height 240ms ease;
  }

  .mobile-nav.is-open {
    max-height: 360px;
  }

  .mobile-nav a {
    padding: 16px 22px;
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.85rem;
    font-weight: 700;
  }

  .hero-grid,
  .split-grid,
  .location-feature,
  .location-panel,
  .gallery-layout,
  .specs-grid,
  .enquire-grid,
  .devotion-grid,
  .invest-intro-grid,
  .invest-process-grid,
  .invest-current-card,
  .invest-pillar-grid,
  .detail-two-col,
  .detail-two-col.reverse {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    min-height: 500px;
  }

  .feature-ribbon,
  .project-grid,
  .project-showcase,
  .project-overview-row,
  .detail-facts-grid,
  .project-block-detail-grid,
  .amenity-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-reach {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-link-columns {
    padding-top: 0;
  }

  .invest-hero-inner {
    margin-left: auto;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: relative;
    top: auto;
    grid-template-columns: repeat(3, 1fr);
  }

  .project-mini-card.current {
    grid-column: span 2;
  }

  .location-copy {
    padding: 0;
  }

  .devotion-grid {
    gap: 28px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

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

  .site-header {
    position: absolute;
    top: 14px;
    right: 0;
    left: 0;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .header-inner {
    width: min(100% - 28px, 1180px);
    min-height: 82px;
    padding: 10px 12px 10px 18px;
    overflow: hidden;
    border: 1px solid rgba(227, 180, 87, 0.58);
    border-radius: 26px;
    background:
      linear-gradient(90deg, rgba(197, 138, 42, 0.28) 0 4px, transparent 4px),
      radial-gradient(circle at 12% 50%, rgba(227, 180, 87, 0.28), transparent 8rem),
      linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(247, 232, 205, 0.86));
    box-shadow: 0 22px 54px rgba(4, 31, 38, 0.28), inset 0 0 0 1px rgba(255, 255, 255, 0.56);
    backdrop-filter: blur(18px);
  }

  .header-inner::before {
    position: absolute;
    right: 82px;
    top: 50%;
    width: 68px;
    height: 68px;
    transform: translateY(-50%);
    border: 1px solid rgba(197, 138, 42, 0.18);
    border-radius: 50%;
    background:
      radial-gradient(circle, rgba(197, 138, 42, 0.12) 0 24%, transparent 25%),
      conic-gradient(from 0deg, transparent 0 12%, rgba(197, 138, 42, 0.18) 12% 14%, transparent 14% 26%, rgba(197, 138, 42, 0.18) 26% 28%, transparent 28% 100%);
    content: "";
  }

  .header-inner::after {
    right: 104px;
    bottom: 14px;
    left: 22px;
    height: 2px;
    background: linear-gradient(90deg, rgba(197, 138, 42, 0.05), rgba(197, 138, 42, 0.75), rgba(197, 138, 42, 0.05));
  }

  .brand {
    width: 180px;
    height: 58px;
    padding: 4px 8px 4px 0;
    z-index: 2;
  }

  .brand img {
    width: 166px;
    filter: drop-shadow(0 8px 16px rgba(90, 58, 16, 0.16));
  }

  .brand::before {
    left: -9px;
    height: 46px;
    opacity: 1;
  }

  .mobile-toggle {
    position: relative;
    z-index: 2;
    width: 60px;
    height: 60px;
    color: #fff8e8;
    border: 1px solid rgba(227, 180, 87, 0.62);
    border-radius: 20px;
    background:
      radial-gradient(circle at 30% 20%, rgba(227, 180, 87, 0.34), transparent 55%),
      linear-gradient(135deg, #0a4050, #031820);
    box-shadow: 0 15px 30px rgba(4, 31, 38, 0.32), inset 0 0 0 1px rgba(255, 248, 232, 0.1);
    transform: translateZ(0);
    transition: transform 320ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 320ms ease, background 320ms ease, border-color 320ms ease;
    will-change: transform;
  }

  .mobile-toggle.is-open {
    transform: translateY(-1px) scale(0.985);
    border-color: rgba(227, 180, 87, 0.82);
    background:
      radial-gradient(circle at 34% 24%, rgba(255, 225, 151, 0.42), transparent 56%),
      linear-gradient(135deg, #143a36, #3d120f);
    box-shadow: 0 18px 34px rgba(4, 31, 38, 0.38), inset 0 0 0 1px rgba(255, 248, 232, 0.16);
  }

  .mobile-toggle svg {
    transition: transform 260ms cubic-bezier(0.2, 0.9, 0.2, 1), opacity 220ms ease;
  }

  .mobile-toggle::after {
    position: absolute;
    inset: -7px;
    z-index: -1;
    border: 1px solid rgba(197, 138, 42, 0.16);
    border-radius: 26px;
    content: "";
    transition: transform 320ms ease, border-color 320ms ease, opacity 320ms ease;
  }

  .mobile-toggle.is-open::after {
    opacity: 0.9;
    transform: scale(1.08);
    border-color: rgba(227, 180, 87, 0.28);
  }

  .mobile-nav {
    position: absolute;
    top: 92px;
    right: 14px;
    left: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: auto;
    max-height: 0;
    margin: 0;
    padding: 0 10px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, -16px, 0) scale(0.965);
    transform-origin: top right;
    visibility: hidden;
    filter: blur(7px);
    border: 1px solid rgba(227, 180, 87, 0.34);
    border-radius: 22px;
    background:
      radial-gradient(circle at 8% 8%, rgba(227, 180, 87, 0.18), transparent 10rem),
      linear-gradient(150deg, rgba(5, 28, 34, 0.98), rgba(43, 18, 16, 0.94));
    box-shadow: 0 30px 68px rgba(2, 17, 23, 0.44), inset 0 0 0 1px rgba(255, 248, 232, 0.08);
    backdrop-filter: blur(18px);
    transition:
      max-height 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
      padding 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 260ms ease,
      transform 420ms cubic-bezier(0.2, 0.9, 0.2, 1),
      filter 320ms ease,
      visibility 0s linear 420ms;
    will-change: transform, opacity, filter;
  }

  .mobile-nav.is-open {
    max-height: 430px;
    padding: 10px;
    opacity: 1;
    pointer-events: auto;
    transform: translate3d(0, 0, 0) scale(1);
    visibility: visible;
    filter: blur(0);
    transition:
      max-height 480ms cubic-bezier(0.2, 0.9, 0.2, 1),
      padding 480ms cubic-bezier(0.2, 0.9, 0.2, 1),
      opacity 260ms ease,
      transform 480ms cubic-bezier(0.2, 0.9, 0.2, 1),
      filter 320ms ease,
      visibility 0s;
  }

  .mobile-nav a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 13px;
    min-height: 48px;
    padding: 0 16px;
    color: #fff8e8;
    border: 1px solid rgba(227, 180, 87, 0.16);
    border-radius: 15px;
    background: rgba(255, 248, 232, 0.06);
    font-family: "Cinzel", Georgia, serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 260ms ease, transform 360ms cubic-bezier(0.2, 0.9, 0.2, 1), background 220ms ease, border-color 220ms ease;
    will-change: opacity, transform;
  }

  .mobile-nav.is-open a {
    opacity: 1;
    transform: translateY(0);
  }

  .mobile-nav.is-open a:nth-child(1) {
    transition-delay: 80ms;
  }

  .mobile-nav.is-open a:nth-child(2) {
    transition-delay: 120ms;
  }

  .mobile-nav.is-open a:nth-child(3) {
    transition-delay: 160ms;
  }

  .mobile-nav.is-open a:nth-child(4) {
    transition-delay: 200ms;
  }

  .mobile-nav.is-open a:nth-child(5) {
    transition-delay: 240ms;
  }

  .mobile-nav.is-open a:nth-child(6) {
    transition-delay: 280ms;
  }

  .mobile-nav a:active,
  .mobile-nav a:hover {
    border-color: rgba(227, 180, 87, 0.32);
    background: rgba(255, 248, 232, 0.1);
  }

  .mobile-nav a::before {
    display: none;
  }

  .mobile-nav a svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    color: var(--gold-bright);
    stroke-width: 1.8;
  }

  .invest-hero {
    min-height: 100svh;
    padding: 140px 0 46px;
  }

  .invest-hero-inner {
    width: calc(100vw - 40px);
    max-width: 390px;
    margin-inline: auto;
  }

  .invest-hero-bg img {
    object-position: 68% center;
  }

  .invest-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(4, 18, 24, 0.16) 0%, rgba(4, 18, 24, 0.5) 38%, rgba(4, 18, 24, 0.94) 100%),
      linear-gradient(90deg, rgba(4, 18, 24, 0.62), transparent 82%);
  }

  .invest-hero h1 {
    max-width: 370px;
    font-size: clamp(3.05rem, 13vw, 4.55rem);
    line-height: 0.98;
  }

  .invest-hero p {
    max-width: 360px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .invest-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 82svh;
    padding: 126px 0 30px;
    background: #120f0c;
    align-items: stretch;
  }

  .hero::before,
  .temple-backdrop,
  .floating-motifs {
    display: none;
  }

  .hero-visual-shell {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: auto;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: #120f0c url("../assets/home-hero-carousel-mobile-1.png") center/cover no-repeat;
    box-shadow: none;
  }

  .hero-visual-shell img {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center center;
    transform: none;
  }

  .hero-carousel-dots {
    right: 20px;
    bottom: 18px;
    gap: 7px;
  }

  .hero-carousel-dots span {
    width: 24px;
    height: 3px;
  }

  .hero-visual-shell::after {
    background:
      linear-gradient(180deg, rgba(13, 11, 9, 0.02) 0%, rgba(13, 11, 9, 0.14) 22%, rgba(13, 11, 9, 0.62) 66%, rgba(13, 11, 9, 0.9) 100%),
      linear-gradient(90deg, rgba(13, 11, 9, 0.32), transparent 72%);
  }

  .hero-grid {
    display: block;
    gap: 26px;
    position: relative;
    z-index: 2;
    margin-top: 0;
  }

  .hero-grid::before {
    display: none;
  }

  .hero-copy {
    max-width: 640px;
    min-height: auto;
    margin-left: 0;
    margin-bottom: 20px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    color: #fff8e8;
  }

  .hero-copy::before {
    content: "";
    display: block;
    width: 86px;
    height: 2px;
    margin-bottom: 14px;
    background: linear-gradient(90deg, var(--gold-bright), rgba(228, 181, 91, 0));
    box-shadow: 0 0 18px rgba(228, 181, 91, 0.32);
  }

  .hero-media {
    display: none;
  }

  .hero h1 {
    color: #fff8e8;
    max-width: 385px;
    margin-top: 0;
    font-size: clamp(2.28rem, 9.3vw, 3.25rem);
    line-height: 0.94;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.46);
  }

  .hero h1 span {
    color: var(--gold-bright);
  }

  .hero .ornament {
    color: var(--gold-bright);
  }

  .hero-body {
    max-width: 350px;
    margin-top: 12px;
    padding-left: 13px;
    color: rgba(255, 248, 232, 0.9);
    border-left: 3px solid var(--gold-bright);
    font-size: 0.93rem;
    line-height: 1.42;
  }

  .hero .btn-ghost {
    color: #fff8e8;
    border-color: rgba(255, 248, 232, 0.36);
    background: rgba(255, 248, 232, 0.12);
    backdrop-filter: blur(10px);
  }

  .hero-glass-note {
    display: block;
    max-width: 390px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media {
    min-height: auto;
  }

  .arch-frame-large {
    height: 410px;
    clip-path: none;
    border-radius: 54px 54px 12px 12px;
  }

  .hero-image-context {
    display: block;
  }

  .hero-feather {
    top: -34px;
    right: -26px;
    width: 95px;
  }

  .hero-stat-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .feature-ribbon,
  .project-grid,
  .project-compact-card,
  .project-showcase,
  .project-overview-row,
  .detail-facts-grid,
  .project-block-detail-grid,
  .detail-amenity-grid,
  .detail-location-list,
  .project-mini-card.current,
  .project-keyfacts,
  .block-grid,
  .sadhna-block-strip,
  .about-company-points,
  .location-feature,
  .location-route-grid,
  .upcoming-grid,
  .amenity-grid,
  .trust-grid,
  .destination-grid,
  .footer-grid,
  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .form-heading h3 {
    max-width: 8.5ch;
    font-size: clamp(2.7rem, 10.6vw, 3.25rem);
    line-height: 1.12;
    text-wrap: balance;
  }

  .footer-reach {
    gap: 38px;
    padding: 50px 0 28px;
  }

  .footer-intro h2 {
    font-size: clamp(2.25rem, 12vw, 3.65rem);
  }

  .footer-intro > span,
  .footer-link-columns h3 {
    font-size: 1rem;
  }

  .footer-contact-list p,
  .footer-link-columns a {
    font-size: 1rem;
  }

  .footer-link-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 26px;
    align-items: start;
  }

  .footer-link-columns div:last-child {
    grid-column: 1 / -1;
  }

  .footer-link-columns a {
    display: block;
    width: auto;
    overflow-wrap: anywhere;
  }

  .legal-shell .site-header {
    position: absolute;
  }

  .legal-hero {
    min-height: 560px;
    padding: 150px 0 54px;
  }

  .legal-hero h1 {
    font-size: clamp(3.4rem, 16vw, 5.2rem);
  }

  .legal-nav {
    grid-template-columns: 1fr;
  }

  .legal-card {
    border-radius: 18px;
  }

  .ribbon-item {
    border-right: 0;
    border-bottom: 1px solid rgba(223, 177, 91, 0.22);
  }

  .ribbon-item:last-child {
    border-bottom: 0;
  }

  .split-grid {
    gap: 46px;
  }

  .ribbon-item {
    min-height: 86px;
    padding: 15px 14px;
  }

  .ribbon-item:nth-child(odd) {
    border-right: 1px solid rgba(223, 177, 91, 0.22);
  }

  .ribbon-item:nth-child(3) {
    border-bottom: 0;
  }

  .ribbon-item span {
    font-size: 1rem;
  }

  .feature-ribbon {
    display: none;
  }

  .feature-ribbon .ribbon-item {
    min-height: 88px;
    padding: 16px 15px;
  }

  .section-copy h2,
  .devotion-quote h2,
  .location-copy h2,
  .gallery-copy h2,
  .specs-card h2,
  .enquire-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .enquire-copy {
    width: calc(100vw - 40px);
    max-width: 540px;
    margin-inline: auto;
    text-align: left;
  }

  .enquire-copy h2 {
    width: 100%;
    max-width: 480px;
    margin-right: 0;
    margin-left: 0;
    padding-left: 16px;
    font-size: clamp(2.55rem, 11vw, 3.55rem);
    line-height: 1.03;
    text-align: left;
    border-left: 3px solid var(--gold-bright);
    text-wrap: balance;
  }

  .enquire-copy p {
    max-width: 36ch;
    margin-right: 0;
    margin-left: 19px;
    text-align: left;
  }

  .arch-frame-soft,
  .gallery-stage {
    height: 390px;
  }

  .gallery-layout {
    justify-items: center;
  }

  .gallery-copy,
  .gallery-stage {
    width: calc(100vw - 40px);
    max-width: 540px;
  }

  .gallery-stage {
    justify-self: center;
    margin-inline: auto;
  }

  .gallery-arrow {
    width: 56px;
    height: 100%;
  }

  .gallery-arrow-prev {
    left: 0;
  }

  .gallery-arrow-next {
    right: 0;
  }

  .gallery-stage img {
    animation: none;
    transform: none;
    object-position: center center;
  }

  .home-invest {
    padding-top: 12px;
    padding-bottom: 54px;
  }

  .home-invest-card {
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    max-width: 540px;
    margin-inline: auto;
    gap: 20px;
    padding: 0;
  }

  .home-invest-card::before {
    right: -24px;
    bottom: -46px;
    width: 240px;
    opacity: 0.1;
  }

  .home-invest .ornament {
    justify-content: center;
  }

  .home-invest h2 {
    max-width: 100%;
    margin-inline: auto;
    font-size: clamp(2.25rem, 9.2vw, 3rem);
    line-height: 0.98;
    text-align: center;
    text-wrap: balance;
  }

  .home-invest p {
    max-width: 34ch;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .home-invest-card .btn {
    width: min(100%, 340px);
    margin-inline: auto;
    min-height: 58px;
    justify-content: center;
  }

  .flute-line {
    right: 0;
    bottom: -32px;
    width: 88%;
  }

  .amenity-focus {
    display: block;
  }

  .amenity-orbit {
    width: 98px;
    height: 98px;
    margin-top: 22px;
  }

  .location-panel {
    display: flex;
    flex-direction: column;
    padding: 16px;
  }

  .location-feature {
    padding: 18px;
    border-radius: 20px;
  }

  .location-feature::before {
    inset: 9px;
    border-radius: 15px;
  }

  .location-route-grid {
    gap: 10px;
  }

  .route-card {
    min-height: 88px;
    padding: 15px;
  }

  .route-card strong {
    font-size: 1.45rem;
  }

  .location-visual-panel {
    min-height: 330px;
  }

  .temple-embed {
    right: -92px;
    bottom: -28px;
    width: 145%;
  }

  .location-detail {
    width: calc(100% - 28px);
    margin: 14px;
    padding: 18px;
  }

  .location-detail strong {
    font-size: 1.7rem;
  }

  .location-copy {
    order: 1;
  }

  .location-copy .destination-grid {
    display: none;
  }

  .location-map-art {
    order: 2;
    display: grid;
    gap: 10px;
    min-height: auto;
    padding: 18px;
    border-radius: 18px;
  }

  .location-map-art::before,
  .location-map-art::after,
  .route-art,
  .map-sun,
  .yamuna-ribbon {
    display: none;
  }

  .home-pin,
  .place-pin,
  .map-note {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    max-width: none;
    transform: none;
    box-shadow: none;
  }

  .home-pin {
    justify-items: start;
    text-align: left;
  }

  .home-pin span {
    text-align: left;
  }

  .place-pin {
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .place-pin svg {
    grid-row: auto;
  }

  .place-pin strong {
    justify-self: end;
  }

  .specs-visual img {
    height: 320px;
    min-height: 0;
  }

  .project-showcase {
    padding: 14px;
  }

  .project-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .project-tabs button {
    min-width: 0;
    padding-inline: 8px;
  }

  .project-mini-card {
    min-height: auto;
    padding: 18px;
  }

  .project-compact-media,
  .project-compact-media img {
    min-height: 250px;
  }

  .project-compact-body {
    padding: 24px;
    text-align: left;
  }

  .project-compact-body h3 {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    font-size: clamp(2rem, 8vw, 2.55rem);
    line-height: 1.02;
  }

  .project-compact-body p {
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .project-know-more {
    width: 100%;
  }

  .sadhna-block-strip div {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: center;
  }

  .sadhna-block-strip img {
    height: 76px;
    aspect-ratio: auto;
  }

  .project-mini-card.current {
    display: grid;
    gap: 16px;
  }

  .project-mini-card img {
    min-height: 190px;
  }

  .project-showcase-media {
    min-height: auto;
  }

  .project-main-image {
    min-height: 330px;
  }

  .project-view-stack {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    padding: 12px;
    background: rgba(8, 47, 58, 0.94);
  }

  .project-showcase-copy {
    padding: 14px 4px 4px;
  }

  .project-showcase-copy h3 {
    font-size: clamp(2.25rem, 10vw, 3rem);
    line-height: 1.02;
  }

  .project-showcase-copy p {
    font-size: 0.98rem;
    line-height: 1.65;
  }

  .project-visual-summary {
    grid-template-columns: 1fr;
  }

  .project-visual-summary img {
    aspect-ratio: 16 / 8.6;
  }

  .block-grid article {
    display: grid;
    grid-template-columns: 108px 1fr;
    align-items: center;
  }

  .block-grid img {
    height: 100%;
    min-height: 98px;
    aspect-ratio: auto;
  }

  .gallery-caption {
    display: block;
  }

  .gallery-caption span {
    display: block;
    margin-top: 8px;
    text-align: left;
  }

  .specs-card {
    padding: 24px;
  }

  .footer-bottom {
    display: grid;
  }

  .floating-call {
    right: 16px;
    bottom: 16px;
  }

  .temple-corner-embed {
    right: -86px;
    bottom: -78px;
    width: 280px;
    --temple-watermark-opacity: 0.58;
  }

  .project-detail-hero {
    min-height: 100svh;
    padding: 140px 0 46px;
    background:
      linear-gradient(180deg, rgba(4, 18, 24, 0.28) 0%, rgba(4, 18, 24, 0.52) 36%, rgba(4, 18, 24, 0.9) 100%),
      url("../assets/green-walkway.png") center/cover;
  }

  .about-hero {
    min-height: 100svh;
    padding: 140px 0 46px;
  }

  .about-hero-bg img {
    object-position: 68% center;
  }

  .about-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(4, 18, 24, 0.18) 0%, rgba(4, 18, 24, 0.42) 34%, rgba(4, 18, 24, 0.94) 100%),
      linear-gradient(90deg, rgba(4, 18, 24, 0.62), transparent 80%);
  }

  .about-hero-grid,
  .about-story-grid,
  .about-focus-grid,
  .about-strength-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-grid {
    gap: 22px;
  }

  .about-hero-copy h1 {
    font-size: clamp(3.25rem, 14vw, 4.8rem);
  }

  .about-hero-copy p {
    max-width: 360px;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .about-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .invest-intro-copy,
  .invest-process-copy {
    width: calc(100vw - 40px);
    max-width: 540px;
    margin-inline: auto;
  }

  .invest-intro-copy .ornament,
  .invest-process-copy .ornament {
    justify-content: center;
  }

  .invest-intro-copy h2,
  .invest-process-copy h2,
  .invest-current-card h2,
  .invest-cta-panel h2 {
    font-size: clamp(2.35rem, 10.5vw, 3.45rem);
    line-height: 1.04;
    text-align: center;
    text-wrap: balance;
  }

  .invest-intro-copy p,
  .invest-process-copy p,
  .invest-current-card p,
  .invest-cta-panel p {
    max-width: 34ch;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .invest-note-card,
  .invest-pillar-grid article,
  .invest-steps div {
    min-height: auto;
    padding: 22px;
  }

  .invest-pillar-grid {
    gap: 12px;
  }

  .invest-current-card {
    padding: 20px;
    text-align: center;
  }

  .invest-current-card img {
    order: -1;
    border-radius: 16px;
  }

  .invest-current-card .btn {
    width: 100%;
  }

  .invest-cta-panel {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .invest-cta-panel .btn {
    width: 100%;
    min-height: 58px;
    padding-inline: 24px;
    white-space: nowrap;
  }

  .about-hero-panel {
    padding: 18px;
  }

  .about-hero-panel strong {
    font-size: 1.55rem;
  }

  .about-hero-metrics {
    grid-template-columns: 1fr;
  }

  .about-hero-metrics div {
    min-height: auto;
  }

  .about-story-copy h2,
  .about-focus-copy h2,
  .about-cta-panel h2 {
    font-size: clamp(2.55rem, 11vw, 3.9rem);
  }

  .about-story-copy {
    width: calc(100vw - 40px);
    max-width: 540px;
    margin-inline: auto;
    padding: 22px 18px 24px;
    border: 1px solid rgba(169, 110, 33, 0.16);
    border-top: 3px solid var(--gold);
    border-radius: 18px;
    background: rgba(255, 249, 239, 0.62);
    box-shadow: 0 22px 56px rgba(105, 67, 22, 0.08);
  }

  .about-story-copy .ornament {
    justify-content: center;
  }

  .about-story-copy h2 {
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(2.15rem, 9.4vw, 3.05rem);
    line-height: 1.06;
    text-align: center;
    text-wrap: balance;
  }

  .about-story-copy p {
    max-width: 34ch;
    margin-right: auto;
    margin-left: auto;
    font-size: 1rem;
    line-height: 1.72;
    text-align: center;
  }

  .about-story-card img {
    height: 260px;
  }

  .about-more-btn {
    width: 100%;
    margin-top: 22px;
  }

  .about-strength-grid article,
  .values-grid div {
    min-height: auto;
    padding: 22px;
  }

  .about-cta-panel {
    display: grid;
    padding: 26px;
    text-align: left;
  }

  .about-cta-panel .btn {
    width: 100%;
  }

  .project-detail-hero h1 {
    font-size: clamp(3.55rem, 16vw, 5.4rem);
  }

  .project-detail-hero p {
    font-size: 1rem;
  }

  .detail-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .detail-facts-strip {
    margin-top: 0;
  }

  .detail-facts-grid {
    border-radius: 0;
    width: 100%;
  }

  .detail-facts-grid div {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid rgba(227, 180, 87, 0.22);
  }

  .detail-facts-grid div:last-child {
    border-bottom: 0;
  }

  .detail-block-card div,
  .detail-panel {
    padding: 22px;
  }

  .detail-panel .ornament {
    width: 100%;
    gap: 8px;
    justify-content: center;
  }

  .detail-panel .ornament span {
    flex: 1 1 28px;
    width: auto;
    max-width: 52px;
  }

  .detail-panel .ornament strong {
    max-width: 14ch;
    text-align: center;
    line-height: 1.35;
  }

  .single-building-showcase {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .single-building-media {
    min-height: 320px;
  }

  .single-building-copy {
    padding: 24px 20px;
  }

  .single-building-copy h3 {
    font-size: clamp(2.25rem, 10.5vw, 3.35rem);
    line-height: 1.04;
  }

  .single-building-points {
    grid-template-columns: 1fr;
  }

  .single-building-points div {
    min-height: auto;
  }

  .detail-panel h2 {
    font-size: clamp(2.45rem, 11vw, 3.8rem);
  }

  .detail-temple-card {
    min-height: 340px;
  }

  .detail-temple-card svg {
    width: 132%;
    right: -82px;
  }

  .detail-location-card,
  .detail-location-card img {
    min-height: 330px;
  }

  .detail-cta-inner {
    text-align: left;
  }

  .detail-cta-inner h2 {
    font-size: clamp(2.8rem, 12vw, 4.1rem);
  }

  .detail-cta-inner p {
    margin-left: 0;
  }

  .detail-cta-inner .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .hero-carousel-slide {
    opacity: 0;
    transform: none;
  }

  .hero-carousel-slide:first-child {
    opacity: 1;
  }

  .hero-carousel-dots span:first-child::before {
    transform: scaleX(1);
  }
}

/* Invest & Earn refreshed page */
.invest-main {
  background:
    linear-gradient(180deg, rgba(255, 249, 237, 0.92), rgba(255, 244, 224, 0.7)),
    var(--cream);
}

.invest-hero-v2 {
  position: relative;
  min-height: 760px;
  padding: 154px 0 72px;
  overflow: hidden;
  color: #fff8e8;
  background: #041e28;
  isolation: isolate;
}

.invest-hero-v2 .invest-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.invest-hero-v2 .invest-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.invest-hero-v2 .invest-hero-bg::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 20, 27, 0.9) 0%, rgba(4, 20, 27, 0.64) 45%, rgba(4, 20, 27, 0.16) 100%),
    linear-gradient(180deg, rgba(4, 20, 27, 0.14) 0%, rgba(4, 20, 27, 0.82) 100%);
  content: "";
}

.invest-hero-v2-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.46fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: end;
  min-height: 530px;
}

.eyebrow,
.invest-why-copy > span,
.invest-cta-v2-panel > div > span {
  display: inline-block;
  color: var(--gold-bright);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.invest-hero-copy h1,
.invest-opening-copy h2,
.invest-security-copy h2,
.invest-why-copy h2,
.invest-cta-v2-panel h2 {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

.invest-hero-copy h1 {
  max-width: 880px;
  color: #fff8e8;
  font-size: clamp(4.1rem, 7vw, 7.25rem);
  text-shadow: 0 24px 54px rgba(0, 0, 0, 0.36);
}

.invest-hero-copy h1::first-line,
.invest-opening-copy h2::first-line,
.invest-security-copy h2::first-line,
.invest-why-copy h2::first-line,
.invest-cta-v2-panel h2::first-line {
  color: var(--gold-bright);
}

.invest-hero-copy p {
  max-width: 650px;
  margin: 24px 0 0;
  padding-left: 20px;
  color: rgba(255, 248, 232, 0.86);
  border-left: 4px solid var(--gold-bright);
  font-size: clamp(1rem, 1.1vw, 1.12rem);
  line-height: 1.76;
}

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

.invest-hero-v2 .btn-ghost {
  color: #fff8e8;
  border-color: rgba(255, 248, 232, 0.34);
  background: rgba(255, 248, 232, 0.1);
  backdrop-filter: blur(10px);
}

.invest-hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(227, 180, 87, 0.42);
  border-radius: 18px;
  background: rgba(227, 180, 87, 0.28);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(12px);
}

.invest-hero-panel div {
  padding: 24px;
  background: rgba(5, 54, 65, 0.78);
}

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

.invest-hero-panel strong {
  color: #fff8e8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.72rem;
  line-height: 1;
}

.invest-hero-panel span {
  margin-top: 8px;
  color: rgba(255, 248, 232, 0.72);
  line-height: 1.55;
}

.invest-opening-grid,
.invest-security-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.82fr);
  gap: clamp(34px, 5vw, 76px);
  align-items: center;
}

.invest-opening-copy h2,
.invest-security-copy h2,
.invest-why-copy h2,
.invest-cta-v2-panel h2 {
  max-width: 800px;
  color: var(--maroon);
  font-size: clamp(3.05rem, 5vw, 5.4rem);
}

.invest-opening-copy p,
.invest-security-copy p,
.invest-why-copy p,
.invest-cta-v2-panel p {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.82;
}

.invest-opening-visual,
.invest-security-image {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.26);
  border-radius: 26px;
  box-shadow: 0 30px 80px rgba(95, 56, 18, 0.14);
}

.invest-opening-visual img,
.invest-security-image img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
}

.invest-paths {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.7), rgba(255, 244, 224, 0.84));
}

.invest-path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
}

.invest-path-grid article {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.24);
  border-radius: 24px;
  background: rgba(255, 250, 242, 0.86);
  box-shadow: 0 24px 64px rgba(95, 56, 18, 0.12);
}

.invest-path-grid img {
  width: 100%;
  aspect-ratio: 16 / 10.5;
  object-fit: cover;
}

.invest-path-grid article > div {
  padding: clamp(24px, 3vw, 38px);
}

.invest-path-grid span,
.invest-security-copy .ornament strong {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.invest-path-grid h3 {
  margin: 12px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.35rem, 3.2vw, 3.7rem);
  line-height: 0.98;
}

.invest-path-grid p {
  margin: 18px 0 0;
  color: var(--muted);
  line-height: 1.74;
}

.invest-security-v2 {
  color: #fff8e8;
  background:
    linear-gradient(135deg, rgba(4, 31, 38, 0.98), rgba(88, 23, 23, 0.86)),
    url("../assets/invest-security.png") center/cover;
}

.invest-security-grid {
  grid-template-columns: minmax(420px, 0.78fr) minmax(0, 0.82fr);
}

.invest-security-copy h2 {
  color: #fff8e8;
}

.invest-security-copy p {
  color: rgba(255, 248, 232, 0.78);
}

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

.security-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(227, 180, 87, 0.24);
  border-radius: 14px;
  background: rgba(255, 248, 232, 0.08);
}

.security-list svg {
  flex: 0 0 auto;
  color: var(--gold-bright);
}

.security-list strong {
  color: #fff8e8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  line-height: 1.05;
}

.invest-why-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.78fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid rgba(169, 110, 33, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.94), rgba(255, 244, 224, 0.78)),
    url("../assets/invest-growth-collage.png") right center/52% auto no-repeat;
  box-shadow: 0 28px 72px rgba(95, 56, 18, 0.12);
}

.invest-why-list {
  display: grid;
  gap: 12px;
}

.invest-why-list div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 17px 18px;
  border: 1px solid rgba(169, 110, 33, 0.2);
  border-radius: 14px;
  background: rgba(255, 252, 246, 0.78);
  backdrop-filter: blur(8px);
}

.invest-why-list svg {
  flex: 0 0 auto;
  color: var(--gold);
}

.invest-why-list span {
  color: #203932;
  font-weight: 700;
  line-height: 1.45;
}

.invest-cta-v2 {
  padding-top: 0;
}

.invest-cta-v2-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(30px, 4vw, 48px);
  color: #fff8e8;
  border: 1px solid rgba(227, 180, 87, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(4, 31, 38, 0.96), rgba(89, 22, 20, 0.9)),
    url("../assets/invest-advisory.png") center/cover;
  box-shadow: 0 28px 72px rgba(95, 56, 18, 0.16);
}

.invest-cta-v2-panel h2 {
  max-width: 900px;
  color: #fff8e8;
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
}

.invest-cta-v2-panel p {
  max-width: 720px;
  color: rgba(255, 248, 232, 0.78);
}

.invest-cta-v2-panel .btn {
  min-width: 230px;
  justify-content: center;
}

@media (max-width: 1040px) {
  .invest-hero-v2-inner,
  .invest-opening-grid,
  .invest-security-grid,
  .invest-why-panel,
  .invest-cta-v2-panel {
    grid-template-columns: 1fr;
  }

  .invest-hero-v2-inner {
    min-height: auto;
  }

  .invest-hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .invest-security-image {
    order: -1;
  }
}

@media (max-width: 720px) {
  .invest-hero-v2 {
    min-height: 92svh;
    padding: 128px 0 42px;
  }

  .invest-hero-v2 .invest-hero-bg img {
    object-position: center;
  }

  .invest-hero-v2 .invest-hero-bg::after {
    background:
      linear-gradient(180deg, rgba(4, 18, 24, 0.26) 0%, rgba(4, 18, 24, 0.42) 34%, rgba(4, 18, 24, 0.96) 100%),
      linear-gradient(90deg, rgba(4, 18, 24, 0.72), transparent 76%);
  }

  .invest-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(3.05rem, 13vw, 4.6rem);
    line-height: 0.98;
  }

  .invest-hero-copy p {
    max-width: 34ch;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .invest-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .invest-hero-panel {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }

  .invest-hero-panel div {
    padding: 18px;
  }

  .invest-opening-copy .ornament,
  .invest-security-copy .ornament {
    justify-content: center;
  }

  .invest-opening-copy h2,
  .invest-security-copy h2,
  .invest-why-copy h2,
  .invest-cta-v2-panel h2 {
    font-size: clamp(2.55rem, 11vw, 3.7rem);
    line-height: 1.02;
    text-align: center;
    text-wrap: balance;
  }

  .invest-opening-copy p,
  .invest-security-copy p,
  .invest-why-copy p,
  .invest-cta-v2-panel p {
    max-width: 35ch;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .invest-opening-visual img,
  .invest-security-image img {
    min-height: 320px;
  }

  .invest-path-grid {
    grid-template-columns: 1fr;
  }

  .invest-path-grid article,
  .invest-opening-visual,
  .invest-security-image,
  .invest-why-panel,
  .invest-cta-v2-panel {
    border-radius: 20px;
  }

  .invest-path-grid h3 {
    font-size: clamp(2.2rem, 10vw, 3.2rem);
  }

  .security-list div,
  .invest-why-list div {
    align-items: flex-start;
  }

  .invest-why-panel {
    padding: 28px 20px;
    background:
      linear-gradient(180deg, rgba(255, 250, 242, 0.96), rgba(255, 244, 224, 0.86)),
      url("../assets/invest-growth-collage.png") center bottom/118% auto no-repeat;
  }

  .invest-cta-v2-panel {
    padding: 30px 20px;
    text-align: center;
  }

  .invest-cta-v2-panel .btn {
    width: 100%;
    min-height: 58px;
  }
}
/* Homepage Invest & Earn section refresh */
.home-invest {
  position: relative;
  padding-top: clamp(42px, 6vw, 84px);
  padding-bottom: clamp(48px, 7vw, 92px);
}

.home-invest-card {
  position: relative;
  display: grid;
  grid-template-areas:
    "divider divider"
    "media copy";
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.72fr);
  gap: 28px clamp(28px, 4.8vw, 72px);
  align-items: center;
  max-width: min(1280px, calc(100vw - 96px));
  margin-inline: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.home-invest-card::before,
.home-invest-card::after {
  display: none;
}

.home-invest-media {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(197, 138, 42, 0.35);
  border-radius: 26px;
  background: #082c36;
  box-shadow: 0 30px 70px rgba(87, 56, 22, 0.17);
}

.home-invest-media::after {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 248, 232, 0.35);
  border-radius: 19px;
  content: "";
  pointer-events: none;
}

.home-invest-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
  transform: scale(1.012);
}

.home-invest-copy {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.home-invest-divider {
  grid-area: divider;
  justify-content: center;
  width: min(620px, 100%);
  margin: 0 auto 4px;
  color: var(--gold-bright);
}

.home-invest-media {
  grid-area: media;
}

.home-invest-copy {
  grid-area: copy;
}

.home-invest h2 {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 0;
}

.home-invest h2::first-line {
  color: #173a34;
}

.home-invest h2 span {
  display: inline;
}

.home-invest p {
  max-width: 56ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.78;
}

.home-invest-card .btn {
  width: fit-content;
  min-width: 178px;
  margin-top: 30px;
}

@media (max-width: 720px) {
  .home-invest {
    padding-top: 42px;
    padding-bottom: 56px;
  }

  .home-invest-card {
    grid-template-areas:
      "divider"
      "media"
      "copy";
    grid-template-columns: 1fr;
    width: calc(100vw - 40px);
    max-width: 540px;
    gap: 22px;
  }

  .home-invest-media {
    min-height: 250px;
    border-radius: 22px;
  }

  .home-invest-media::after {
    inset: 10px;
    border-radius: 16px;
  }

  .home-invest-copy {
    max-width: 100%;
    display: grid;
    justify-items: start;
    text-align: left;
  }

  .home-invest-divider {
    justify-content: center;
    margin-bottom: 2px;
  }

  .home-invest h2 {
    width: 100%;
    max-width: 11.5ch;
    margin: 0;
    font-size: clamp(3.15rem, 13vw, 4.05rem);
    line-height: 0.86;
    text-align: left;
  }

  .home-invest h2 span {
    display: block;
  }

  .home-invest p {
    max-width: 32ch;
    margin-top: 18px;
    margin-right: 0;
    margin-left: 0;
    text-align: left;
  }

  .home-invest-card .btn {
    width: min(100%, 360px);
    min-height: 58px;
    margin-right: 0;
    margin-left: 0;
    justify-content: center;
  }
}

.enquire-visuals {
  display: none;
}

@media (min-width: 1050px) {
  .enquire-grid {
    grid-template-columns: minmax(560px, 0.9fr) minmax(360px, 0.48fr);
    grid-template-areas:
      "copy copy"
      "form visuals";
    gap: 34px 28px;
    align-items: stretch;
    max-width: min(1280px, calc(100vw - 96px));
  }

  .enquire-copy {
    grid-area: copy;
    max-width: 780px;
    margin-inline: auto;
    text-align: center;
  }

  .enquire-copy .ornament {
    justify-content: center;
  }

  .enquire-copy h2,
  .enquire-copy p {
    margin-right: auto;
    margin-left: auto;
  }

  .enquire-copy h2 {
    max-width: 720px;
  }

  .enquiry-form {
    grid-area: form;
    min-height: 100%;
  }

  .enquire-visuals {
    grid-area: visuals;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
    min-height: 100%;
  }

  .enquire-visual-card {
    position: relative;
    min-height: 300px;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(227, 180, 87, 0.38);
    border-radius: 18px;
    background: #082c36;
    box-shadow: 0 24px 58px rgba(4, 31, 38, 0.16);
  }

  .enquire-visual-card::after {
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(255, 248, 232, 0.32);
    border-radius: 13px;
    content: "";
    pointer-events: none;
  }

  .enquire-visual-card img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .enquire-visual-card:first-child img {
    object-position: center;
  }

  .enquire-visual-card:last-child img {
    object-position: center;
  }
}

@media (min-width: 1180px) {
  .hero-copy {
    margin-left: clamp(20px, 1.55vw, 28px);
  }

  .feature-ribbon {
    margin-right: 9px;
  }
}

.anandam-page .project-detail-hero {
  background:
    linear-gradient(90deg, rgba(4, 18, 24, 0.9) 0%, rgba(4, 18, 24, 0.6) 44%, rgba(4, 18, 24, 0.18) 100%),
    url("../assets/anandam-hero-main.png") center/cover;
}

.anandam-page .detail-hero-shade {
  background:
    radial-gradient(circle at 76% 26%, rgba(227, 180, 87, 0.2), transparent 18rem),
    radial-gradient(circle at 16% 76%, rgba(116, 49, 38, 0.36), transparent 24rem);
}

.project-panel[data-project-panel="current"].is-active {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
}

.anandam-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
}

.anandam-overview-copy,
.anandam-overview-media,
.anandam-brochure-card,
.anandam-map-card,
.anandam-gallery-card,
.anandam-plan-card {
  overflow: hidden;
  border: 1px solid rgba(169, 110, 33, 0.26);
  border-radius: 20px;
  box-shadow: 0 24px 58px rgba(95, 56, 18, 0.12);
}

.anandam-overview-copy {
  padding: clamp(28px, 4.4vw, 58px);
  background:
    linear-gradient(135deg, rgba(255, 249, 239, 0.95), rgba(255, 242, 219, 0.78)),
    radial-gradient(circle at 12% 0%, rgba(227, 180, 87, 0.2), transparent 17rem);
}

.anandam-overview-copy > span,
.anandam-gallery-card span,
.anandam-plan-card span {
  color: var(--gold);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.anandam-overview-copy h2 {
  max-width: 640px;
  margin: 12px 0 0;
  color: var(--maroon);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.7rem, 5.1vw, 5.2rem);
  line-height: 0.94;
}

.anandam-overview-copy h2::first-line {
  color: #203932;
}

.anandam-overview-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.78;
}

.anandam-overview-media {
  min-height: 620px;
  background: #082f3a;
}

.anandam-overview-media img,
.anandam-brochure-card img,
.anandam-map-card img,
.anandam-gallery-card img,
.anandam-plan-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.anandam-image-band {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.86), rgba(248, 236, 215, 0.74));
}

.anandam-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  grid-auto-rows: minmax(260px, auto);
  gap: 18px;
}

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

.anandam-gallery-card {
  position: relative;
  min-height: 310px;
  margin: 0;
  background: #082f3a;
}

.anandam-gallery-card.large {
  grid-row: span 2;
  min-height: 660px;
}

.anandam-gallery-two .anandam-gallery-card.large {
  grid-row: auto;
}

.anandam-gallery-two .anandam-gallery-card {
  min-height: 540px;
}

.anandam-gallery-card::after {
  display: none;
  content: none;
}

.anandam-gallery-card figcaption {
  display: none;
}

.anandam-gallery-card strong {
  display: block;
  margin-top: 7px;
  color: #fff8e8;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.1rem);
  line-height: 1.05;
}

.anandam-amenities-section {
  background:
    linear-gradient(90deg, rgba(8, 47, 58, 0.98), rgba(8, 47, 58, 0.88)),
    url("../assets/anandam-hero-2.png") center/cover;
}

.anandam-brochure-card {
  min-height: 560px;
  background: rgba(255, 248, 232, 0.08);
}

.anandam-amenities-section .detail-panel,
.anandam-location-wrap .detail-panel {
  max-width: 1120px;
  margin-inline: auto;
}

.anandam-brochure-card img,
.anandam-map-card img {
  object-fit: contain;
  padding: 12px;
  background: rgba(255, 248, 232, 0.92);
}

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

.anandam-plan-card {
  margin: 0;
  background:
    linear-gradient(135deg, rgba(255, 252, 246, 0.98), rgba(246, 233, 211, 0.82));
}

.anandam-plan-card.wide {
  grid-column: span 2;
}

.anandam-plan-card img {
  height: auto;
  min-height: 360px;
  object-fit: contain;
  padding: clamp(10px, 1.5vw, 18px);
  background: #fff;
}

.anandam-plan-card figcaption {
  padding: 20px 22px 24px;
  border-top: 1px solid rgba(169, 110, 33, 0.18);
}

.anandam-plan-card strong {
  display: block;
  max-width: 760px;
  margin-top: 8px;
  color: #203932;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1.08;
}

.sadhna-plan-grid .anandam-plan-card img {
  min-height: 0;
  padding: 0;
  object-fit: cover;
  background: #7c8b8f;
}

.sadhna-plan-card-plan img {
  aspect-ratio: 4 / 5;
}

.sadhna-plan-card-3d img {
  aspect-ratio: 16 / 9;
}

.anandam-map-card {
  min-height: 520px;
  background: rgba(255, 248, 232, 0.88);
}

@media (min-width: 860px) {
  .project-panel[data-project-panel="current"].is-active,
  .project-panel[data-project-panel="all"] .project-overview-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .anandam-overview,
  .anandam-gallery,
  .project-gallery-grid,
  .anandam-location-wrap,
  .anandam-amenities-section .detail-two-col {
    grid-template-columns: 1fr;
  }

  .anandam-overview-media,
  .anandam-brochure-card,
  .anandam-gallery-card.large,
  .anandam-gallery-card,
  .project-gallery-card.large,
  .project-gallery-card,
  .anandam-map-card {
    min-height: auto;
  }

  .anandam-overview-media img,
  .anandam-gallery-card img,
  .project-gallery-card img {
    min-height: 340px;
  }

  .anandam-plan-grid,
  .anandam-plan-card.wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .anandam-page .project-detail-hero {
    min-height: 650px;
    background-position: 52% center;
  }

  .anandam-page .project-detail-hero h1 {
    font-size: clamp(3.6rem, 16vw, 5.2rem);
  }

  .anandam-overview-copy {
    padding: 26px 22px;
  }

  .anandam-overview-copy h2 {
    font-size: clamp(2.55rem, 13vw, 3.85rem);
  }

  .anandam-gallery-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .project-gallery-card figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 14px;
  }

  .anandam-gallery-card strong,
  .project-gallery-card strong,
  .anandam-plan-card strong {
    font-size: 1.45rem;
  }

  .project-gallery-grid,
  .anandam-gallery,
  .anandam-gallery-two {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 18px 14px;
    margin-inline: -18px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .project-gallery-grid::-webkit-scrollbar,
  .anandam-gallery::-webkit-scrollbar {
    display: none;
  }

  .project-gallery-card,
  .project-gallery-card.large,
  .anandam-gallery-card,
  .anandam-gallery-card.large {
    flex: 0 0 min(82vw, 360px);
    min-height: 420px;
    scroll-snap-align: center;
  }

  .project-gallery-card img,
  .anandam-gallery-card img {
    min-height: 0;
    height: 100%;
  }

  .project-gallery-card video {
    min-height: 0;
    height: 100%;
  }

  .anandam-plan-card img {
    min-height: auto;
    padding: 8px;
  }

  .sadhna-plan-grid .anandam-plan-card img {
    padding: 0;
  }

  .anandam-brochure-card img,
  .anandam-map-card img {
    padding: 8px;
  }
}

/* Final polish pass */
html {
  scroll-padding-top: 110px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  touch-action: manipulation;
}

body {
  min-width: 320px;
  color-scheme: light;
  touch-action: manipulation;
}

::selection {
  color: #fff8e8;
  background: rgba(90, 24, 23, 0.86);
}

:focus-visible {
  outline: 2px solid rgba(227, 180, 87, 0.9);
  outline-offset: 4px;
}

a,
button,
.btn,
.project-tabs button,
.mobile-toggle,
.project-compact-card,
.project-gallery-card,
.anandam-gallery-card,
.floating-call {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.site-header {
  box-shadow: 0 18px 42px rgba(72, 43, 20, 0.08);
}

.desktop-nav a {
  transition: color 220ms ease;
}

.desktop-nav a:hover {
  color: var(--maroon);
}

.btn,
.project-tabs button,
.mobile-toggle,
.project-compact-card,
.detail-panel,
.anandam-plan-card,
.project-gallery-card,
.anandam-gallery-card,
.enquiry-form,
.home-invest-card {
  transform: translateZ(0);
}

.btn {
  box-shadow: 0 12px 28px rgba(90, 24, 23, 0.12);
}

.btn-primary:hover,
.btn-nav:hover,
.project-know-more:hover {
  box-shadow: 0 20px 42px rgba(90, 24, 23, 0.26), inset 0 0 0 1px rgba(246, 207, 128, 0.3);
}

.project-tabs {
  box-shadow: 0 18px 44px rgba(95, 56, 18, 0.09);
}

.project-tabs button {
  min-height: 56px;
}

.project-compact-card,
.single-building-showcase,
.anandam-overview-copy,
.detail-panel.light,
.anandam-plan-card,
.project-gallery-card,
.anandam-gallery-card {
  box-shadow: 0 22px 58px rgba(95, 56, 18, 0.11);
}

.project-compact-card {
  transition: transform 280ms cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 280ms ease, border-color 280ms ease;
}

.project-compact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(197, 138, 42, 0.44);
  box-shadow: 0 34px 78px rgba(95, 56, 18, 0.17);
}

.project-compact-media img,
.project-gallery-card img,
.anandam-gallery-card img,
.anandam-plan-card img {
  backface-visibility: hidden;
}

.section-title h2,
.ornament strong {
  text-wrap: balance;
}

.detail-panel p,
.project-compact-body p,
.single-building-copy p,
.anandam-overview-copy p,
.detail-cta-inner p,
.form-heading p {
  text-wrap: pretty;
}

.field input,
.field select,
.field textarea,
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  font-size: 16px;
  touch-action: manipulation;
  transition: border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus,
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  border-color: rgba(227, 180, 87, 0.74);
  box-shadow: 0 0 0 4px rgba(227, 180, 87, 0.12);
  outline: none;
}

.floating-call {
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.floating-call:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 18px 42px rgba(90, 24, 23, 0.28);
}

.project-gallery-grid,
.anandam-gallery {
  overscroll-behavior-inline: contain;
}

.gallery-page-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}

.gallery-page-controls button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(169, 110, 33, 0.4);
  border-radius: 999px;
  color: var(--maroon);
  background: rgba(255, 248, 236, 0.8);
  box-shadow: 0 12px 28px rgba(95, 56, 18, 0.12), inset 0 0 0 1px rgba(255, 255, 255, 0.46);
  cursor: pointer;
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.92rem;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.gallery-page-controls button:hover,
.gallery-page-controls button.is-active {
  color: #fff8ea;
  background: linear-gradient(135deg, var(--maroon), #74221e 62%, #41120f);
  box-shadow: 0 16px 34px rgba(90, 24, 23, 0.2), inset 0 0 0 1px rgba(246, 207, 128, 0.3);
  transform: translateY(-2px);
}

@media (min-width: 901px) {
  .anandam-plan-grid {
    max-width: 980px;
    margin-inline: auto;
    gap: 16px;
  }

  .anandam-plan-card,
  .anandam-plan-card.wide {
    grid-column: auto;
  }

  .anandam-plan-card img {
    height: clamp(260px, 25vw, 340px);
    min-height: 0;
    padding: 12px;
  }

  .anandam-plan-card figcaption {
    padding: 16px 18px 18px;
  }

  .anandam-plan-card strong {
    font-size: clamp(1.3rem, 1.55vw, 1.7rem);
  }

  .sadhna-plan-grid {
    max-width: 860px;
  }

  .sadhna-plan-grid .anandam-plan-card img {
    height: clamp(270px, 28vw, 360px);
    min-height: 0;
  }
}

@media (min-width: 721px) {
  .project-gallery-grid,
  .anandam-gallery,
  .anandam-gallery-two {
    display: flex;
    grid-template-columns: none;
    gap: 18px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 18px;
    margin-inline: -4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .project-gallery-grid::-webkit-scrollbar,
  .anandam-gallery::-webkit-scrollbar {
    display: none;
  }

  .project-gallery-card,
  .project-gallery-card.large,
  .anandam-gallery-card,
  .anandam-gallery-card.large {
    flex: 0 0 clamp(300px, calc((100% - 36px) / 3), 390px);
    height: 460px;
    min-height: 460px;
    scroll-snap-align: center;
  }

  .project-gallery-card img,
  .project-gallery-card video,
  .anandam-gallery-card img {
    height: 100%;
    min-height: 0;
  }
}

@media (max-width: 720px) {
  html {
    scroll-padding-top: 118px;
  }

  .container {
    width: min(100% - 32px, 1180px);
  }

  .section-pad {
    padding: 64px 0;
  }

  .project-tabs {
    gap: 8px;
  }

  .project-tabs button {
    min-height: 54px;
    padding-inline: 16px;
  }

  .project-compact-card:hover {
    transform: none;
  }

  .project-compact-body h3 span {
    white-space: normal;
  }

  .project-gallery-grid,
  .anandam-gallery,
  .anandam-gallery-two {
    scroll-padding-inline: 18px;
  }

  .gallery-page-controls {
    display: none;
  }

  .project-gallery-card,
  .project-gallery-card.large,
  .anandam-gallery-card,
  .anandam-gallery-card.large {
    border-radius: 18px;
  }

  .floating-call {
    right: 20px;
    bottom: 20px;
  }
}

@media (min-width: 860px) {
  .projects .project-panel[data-project-panel="all"] .project-overview-row,
  .projects .project-panel[data-project-panel="current"].is-active {
    grid-template-columns: repeat(2, minmax(0, 390px));
    justify-content: center;
    gap: 16px;
    max-width: 820px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
