@font-face {
  font-family: "Geist";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://cdn.jsdelivr.net/fontsource/fonts/geist:vf@5.3.0/latin-wght-normal.woff2") format("woff2-variations");
}

:root {
  --cream: #e8e4dc;
  --paper: #f7f7f7;
  --ink: #11110f;
  --muted-ink: #44423f;
  --gold: #ffd84d;
  --forest: #304832;
  --serif: "Geist", "Geist Placeholder", sans-serif;
  --sans: "Geist", "Geist Placeholder", sans-serif;
}

* {
  box-sizing: border-box;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Geist", "Geist Placeholder", sans-serif;
  font-weight: 600;
  letter-spacing: -0.025em;
}

p {
  font-family: "Geist", "Geist Placeholder", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

body.modal-open {
  overflow: hidden;
}

html {
  scroll-behavior: smooth;
}

.site-header,
.hero-video,
.villa-hero {
  animation: pageFadeIn .8s ease both;
}

.animations-ready .reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity .8s ease, transform .8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.animations-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animations-ready .image-reveal {
  opacity: 0;
  transform: scale(1.035);
  filter: saturate(.85);
  transition: opacity 1s ease, transform 1.2s ease, filter 1.2s ease;
  will-change: opacity, transform;
}

.animations-ready .image-reveal.is-visible {
  opacity: 1;
  transform: scale(1);
  filter: saturate(1);
}

.image-banner img,
.villa-hero img,
.villa-video img,
.villa-video video,
.cta-image img {
  transition: transform 1.1s ease;
}

.image-banner:hover img,
.villa-hero:hover img,
.villa-video:hover img,
.villa-video:hover video,
.cta-image:hover img {
  transform: scale(1.025);
}

.wellness-tile,
.plan-card,
.privilege-grid article,
.partner-grid article,
.ownership-steps article,
.investment-section article,
.villa-faq .accordion-item {
  transition: transform .35s ease, opacity .35s ease, box-shadow .35s ease;
}

.wellness-tile:hover,
.plan-card:hover,
.privilege-grid article:hover,
.partner-grid article:hover,
.ownership-steps article:hover,
.investment-section article:hover {
  transform: translateY(-8px);
}

.wellness-tile img,
.plan-card img {
  transition: transform .45s ease, box-shadow .45s ease;
}

.wellness-tile:hover img,
.plan-card:hover img {
  transform: scale(1.045);
}

.enquire-btn,
.waitlist-btn,
.discovery-btn,
.hero-outline-btn,
.video-copy {
  transition: transform .25s ease, box-shadow .25s ease, background-color .25s ease, border-color .25s ease, color .25s ease;
}

.enquire-btn:hover,
.waitlist-btn:hover,
.discovery-btn:hover,
.hero-outline-btn:hover,
.video-copy:hover {
  transform: translateY(-2px);
}

.journey-line svg path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.journey-line.is-visible svg path {
  animation: drawJourney 1.6s ease forwards;
}

.journey-line svg circle {
  opacity: 0;
  transform-origin: center;
}

.journey-line.is-visible svg circle {
  animation: popDot .45s ease forwards;
}

.journey-line.is-visible svg circle:nth-of-type(1) { animation-delay: .25s; }
.journey-line.is-visible svg circle:nth-of-type(2) { animation-delay: .42s; }
.journey-line.is-visible svg circle:nth-of-type(3) { animation-delay: .59s; }
.journey-line.is-visible svg circle:nth-of-type(4) { animation-delay: .76s; }
.journey-line.is-visible svg circle:nth-of-type(5) { animation-delay: .93s; }

@keyframes pageFadeIn {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawJourney {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes popDot {
  from {
    opacity: 0;
    transform: scale(.55);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes contactImageDrift {
  0% {
    transform: scale(1.04) translate3d(-1.2%, -1%, 0);
  }
  50% {
    transform: scale(1.08) translate3d(1.2%, 1%, 0);
  }
  100% {
    transform: scale(1.04) translate3d(-1.2%, -1%, 0);
  }
}

@keyframes contactMarkFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes contactSheen {
  from {
    transform: translateX(-120%) skewX(-18deg);
  }
  to {
    transform: translateX(220%) skewX(-18deg);
  }
}

@keyframes contactSubmitPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(246, 244, 235, .34);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(246, 244, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(246, 244, 235, 0);
  }
}

@keyframes distanceMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333333%);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
}

.navbar {
  min-height: 132px;
  padding: 0;
}

.brand-logo {
  width: clamp(150px, 14vw, 220px);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.navbar-nav {
  gap: clamp(.8rem, 2.2vw, 3.2rem);
}

.nav-link {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-link:focus,
.nav-link:hover {
  color: #77652a;
}

.nav-divider {
  width: 1px;
  height: 34px;
  margin-right: 2.25rem;
  background: #2a2926;
}

.enquire-btn {
  min-width: 164px;
  padding: 14px 30px;
  border-radius: 999px;
  background: var(--gold);
  color: #373019;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-video {
  position: relative;
  min-height: 636px;
  padding: 7rem 1rem;
  background: var(--cream);
  overflow: hidden;
}

.hero-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .42));
}

.sanctuary-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 980px;
  padding: 0 1rem;
  color: #fff;
}

.sanctuary-hero-copy h1 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  text-shadow: 0 14px 42px rgba(0, 0, 0, .42);
}

.sanctuary-hero-copy p {
  max-width: 780px;
  margin: 28px auto 0;
  color: #f2d65c;
  font-size: clamp(1.15rem, 1.7vw, 1.65rem) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-shadow: 0 10px 32px rgba(0, 0, 0, .46);
}

.video-copy {
  border: 0;
  background: transparent;
  color: #000;
  font: 400 clamp(4rem, 7.5vw, 7.25rem) / 1.16 var(--sans);
  text-align: center;
}

.video-copy span {
  display: block;
}

.video-copy.is-playing::after {
  content: "playing";
  display: block;
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.intro-section {
  padding: 108px 1rem 112px;
  background: var(--paper);
}

h1,
.wellness-grid h2,
.life-stage h2,
.spaces-section h2,
.cta-copy h2 {
  margin: 0;
  color: var(--muted-ink);
  font-family: var(--serif);
  font-weight: 400;
}

.intro-section h1 {
  font-size: clamp(2.25rem, 4.1vw, 4.2rem);
}

.intro-section p {
  max-width: 930px;
  margin: 32px auto 0;
  font-size: clamp(1.35rem, 2.35vw, 2.25rem);
  line-height: 1.18;
}

.image-banner {
  position: relative;
  height: 880px;
  overflow: hidden;
}

.image-banner img,
.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-banner img {
  object-position: 50% 47%;
}

.banner-caption {
  position: absolute;
  right: 32px;
  bottom: 70px;
  color: #171917;
  font-size: clamp(1.6rem, 2.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.08;
  text-align: left;
  text-transform: uppercase;
}

.wellness-grid,
.spaces-section {
  padding: 126px 1rem 172px;
  background: var(--paper);
}

.wellness-grid h2,
.spaces-section h2 {
  font-size: clamp(2.5rem, 4.7vw, 5rem);
}

.tile-grid {
  display: grid;
  justify-content: center;
  gap: 66px 82px;
  margin: 118px auto 0;
}

.pillars {
  grid-template-columns: repeat(4, 168px);
}

.pillars-section,
.spaces-section {
  overflow: hidden;
}

.pillars-section .container-fluid,
.spaces-section .container-fluid {
  max-width: 1440px;
  padding-right: 0;
  padding-left: clamp(1rem, 7vw, 6rem);
}

.pillars-section h2,
.spaces-section h2 {
  max-width: 680px;
  text-align: left;
}

.pillar-slider {
  margin-top: 72px;
}

.pillar-track {
  display: flex;
  gap: 36px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0 clamp(1rem, 7vw, 6rem) 22px 0;
}

.pillar-track::-webkit-scrollbar {
  display: none;
}

.wellness-tile.pillar-slide {
  position: relative;
  flex: 0 0 min(408px, 76vw);
  min-height: 610px;
  display: block;
  overflow: hidden;
  border-radius: 8px;
  background: var(--cream);
  scroll-snap-align: start;
  box-shadow: 0 22px 54px rgba(24, 29, 21, .12);
}

.wellness-tile.pillar-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, .62) 0%, rgba(0, 0, 0, .22) 32%, rgba(0, 0, 0, .08) 58%, rgba(0, 0, 0, .35) 100%);
  pointer-events: none;
}

.wellness-tile.pillar-slide h3 {
  position: absolute;
  inset: 26px 26px auto;
  z-index: 2;
  min-height: 0;
  margin: 0;
  max-width: calc(100% - 52px);
  padding: 10px 14px;
  border: 1px solid rgba(246, 244, 235, .3);
  border-radius: 999px;
  background: rgba(17, 17, 15, .42);
  color: #fff;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.45vw, 1.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-align: left;
  text-shadow: 0 8px 24px rgba(0, 0, 0, .42);
  text-transform: uppercase;
}

.wellness-tile.pillar-slide img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.wellness-tile.pillar-slide:hover img {
  transform: scale(1.035);
}

.pillar-slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 0 clamp(1rem, 7vw, 6rem) 0 0;
}

.pillar-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: #f1f0ec;
  color: #11110f;
  font-size: 1.2rem;
  line-height: 1;
  transition: transform .2s ease, background-color .2s ease, color .2s ease;
}

.pillar-arrow:hover,
.pillar-arrow:focus {
  background: #11110f;
  color: #fff;
  transform: translateY(-2px);
}

.spaces {
  max-width: 900px;
  grid-template-columns: repeat(8, minmax(56px, 1fr));
  gap: 66px 0;
}

.spaces .wellness-tile {
  width: 168px;
  justify-self: center;
}

.spaces .wellness-tile:nth-child(1) { grid-column: 2 / span 2; }
.spaces .wellness-tile:nth-child(2) { grid-column: 4 / span 2; }
.spaces .wellness-tile:nth-child(3) { grid-column: 6 / span 2; }
.spaces .wellness-tile:nth-child(4) { grid-column: 1 / span 2; }
.spaces .wellness-tile:nth-child(5) { grid-column: 3 / span 2; }
.spaces .wellness-tile:nth-child(6) { grid-column: 5 / span 2; }
.spaces .wellness-tile:nth-child(7) { grid-column: 7 / span 2; }

.spaces .wellness-tile h3 {
  margin-bottom: 24px;
}

.wellness-tile {
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 244px;
}

.wellness-tile h3 {
  min-height: 68px;
  margin: 0 0 23px;
  color: #1d2418;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.04;
}

.wellness-tile img {
  width: 138px;
  height: 138px;
  border-radius: 16px;
  object-fit: cover;
}

.life-stage {
  padding: 146px 7vw;
  background: var(--forest);
  color: #f5f5ef;
}

.life-stage h2 {
  color: #f5f5ef;
  font-size: clamp(3rem, 5.2vw, 5.2rem);
  line-height: 1.2;
}

.journey-line {
  position: relative;
  max-width: 900px;
  min-height: 270px;
  margin-left: auto;
  color: rgba(255, 255, 255, .86);
  overflow: visible;
}

.journey-line svg {
  width: 100%;
  height: auto;
  margin-top: 62px;
  overflow: visible;
}

.stage {
  position: absolute;
  width: max-content;
  max-width: 190px;
  font-size: clamp(.95rem, 1.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.18;
  text-align: center;
  transform: translateX(-50%);
  white-space: normal;
}

.stage-1 { left: 16%; top: 198px; }
.stage-2 { left: 33%; top: 8px; }
.stage-3 { left: 50%; top: 198px; }
.stage-4 { left: 67%; top: 8px; }
.stage-5 { left: 84%; top: 198px; }

.spaces-section {
  padding-top: 152px;
  padding-bottom: 208px;
}

.spaces-section .tile-grid {
  margin-top: 112px;
}

.cta-section {
  display: grid;
  grid-template-columns: 53.1% 46.9%;
  min-height: 728px;
  background: var(--cream);
}

.cta-copy {
  align-self: center;
  padding: 72px 8.8vw;
}

.cta-copy h2 {
  color: #0f100e;
  font-size: clamp(3rem, 5.2vw, 5.35rem);
  line-height: 1.18;
}

.cta-copy p {
  max-width: 500px;
  margin: 48px 0 56px;
  font-size: clamp(1.2rem, 1.75vw, 1.8rem);
  line-height: 1.2;
}

.waitlist-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 17px 34px;
  border: 1px solid rgba(17, 17, 15, .82);
  border-radius: 999px;
  background: #11110f;
  color: #fff;
  box-shadow: 0 16px 38px rgba(17, 17, 15, .16);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.waitlist-btn:focus,
.waitlist-btn:hover {
  border-color: #77652a;
  background: #2b2b25;
  color: #fff;
  box-shadow: 0 20px 46px rgba(17, 17, 15, .22);
}

.cta-image {
  min-height: 728px;
  overflow: hidden;
}

.cta-image img {
  object-position: 50% 50%;
}

.villas-page {
  background: var(--paper);
}

.villas-page .site-header,
.contact-page .site-header,
.story-page .site-header {
  background: var(--paper);
}

.villas-page .navbar,
.contact-page .navbar,
.story-page .navbar {
  min-height: 126px;
}

.villas-page .nav-link.active,
.contact-page .nav-link.active,
.story-page .nav-link.active {
  color: #000;
}

.villa-hero {
  position: relative;
  height: 805px;
  overflow: hidden;
}

.villa-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .48));
}

.villa-hero img,
.villa-video img,
.villa-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.villa-hero img {
  object-position: 50% 52%;
}

.villa-hero-copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  padding: 0 1rem;
  color: #fff;
}

.villa-hero-copy h1 {
  margin: 0 0 34px;
  color: #fff;
  font-family: var(--serif);
  text-shadow: 0 14px 42px rgba(0, 0, 0, .42);
}

.villa-hero-copy p {
  margin: 0 auto 12px;
  color: #f2d65c;
  font-size: clamp(1rem, 1.55vw, 1.45rem) !important;
  font-weight: 800 !important;
  line-height: 1.4 !important;
  letter-spacing: .02em;
  text-shadow: 0 10px 32px rgba(0, 0, 0, .5);
}

.villa-wellbeing {
  padding: 96px 1rem 86px;
  background: var(--cream);
}

.villa-wellbeing h1,
.villa-layouts h2,
.ownership-model h2,
.privileges-section h2,
.partners-section h2,
.second-home h2,
.investment-section h2,
.faq-section h2,
.villa-final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.villa-wellbeing h1 {
  margin: 0 0 48px;
  font-size: clamp(2.5rem, 4.1vw, 4.6rem);
}

.villa-wellbeing p {
  margin: 0;
  font-size: clamp(1.1rem, 1.65vw, 1.65rem);
  font-weight: 800;
  line-height: 1.8;
}

.villa-video {
  position: relative;
  height: 760px;
  overflow: hidden;
}

.villa-video span {
  position: absolute;
  top: 33%;
  right: 8.5%;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
}

.villa-layouts {
  padding: 138px 5.7vw 150px;
  background: var(--paper);
}

.villa-layouts h2 {
  margin: 42px 0 54px;
  color: #111;
  font-size: clamp(3rem, 4.8vw, 5rem);
  line-height: 1.08;
}

.layout-copy {
  max-width: 330px;
}

.layout-copy h3 {
  margin: 0 0 20px;
  font-size: 1.15rem;
  font-weight: 800;
}

.layout-copy p {
  margin: 0;
  font-size: 1.06rem;
  line-height: 1.22;
}

.layout-rule {
  width: min(330px, 100%);
  height: 1px;
  margin: 58px 0;
  background: #121512;
}

.plan-card h3 {
  margin: 0 0 30px 18px;
  font-size: 1.6rem;
  font-weight: 800;
}

.plan-card img {
  width: 100%;
  max-width: 438px;
  aspect-ratio: 438 / 610;
  object-fit: cover;
  border: 14px solid #f0f0ed;
  box-shadow: 10px 12px 0 #d7d7d4;
}

.ownership-model {
  padding: 138px 5.9vw;
  background: var(--forest);
  color: #f6f4eb;
}

.ownership-model h2 {
  margin: 0;
  font-size: clamp(2.6rem, 4vw, 4.2rem);
}

.ownership-model .subtitle {
  margin: 24px 0 60px;
  font-size: 1.3rem;
}

.ownership-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .78);
}

.ownership-steps article {
  padding-top: 28px;
  padding-right: 28px;
}

.ownership-steps h3 {
  margin: 0 0 34px;
  color: #e8e4dc;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.ownership-steps p {
  max-width: 155px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.13;
}

.ownership-motif {
  width: min(300px, 70%);
  opacity: .23;
  filter: grayscale(1) brightness(2.2);
}

.privileges-section,
.faq-section {
  display: grid;
  grid-template-columns: 2fr 1fr;
  min-height: 830px;
  background: var(--paper);
}

.privileges-copy {
  padding: 118px 7vw 86px;
}

.privileges-section h2,
.partners-section h2,
.investment-section h2,
.faq-section h2 {
  margin: 0;
  color: #3e321d;
  font-size: clamp(2.5rem, 4vw, 4.2rem);
}

.privilege-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 100px 120px;
  max-width: 710px;
  margin-top: 112px;
}

.privilege-grid span,
.investment-section span {
  display: block;
  margin-bottom: 18px;
  color: #555;
  font-size: 1.55rem;
}

.privilege-grid h3,
.investment-section h3 {
  margin: 0 0 22px;
  color: #545454;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 3.1rem);
  font-weight: 400;
  line-height: 1.02;
}

.privilege-grid p,
.investment-section p {
  margin: 0;
  max-width: 285px;
  color: #333;
  font-size: 1rem;
  line-height: 1.16;
}

.legacy-line,
.team-line {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 96px 0 0;
  color: #171717;
  font-size: clamp(1.2rem, 1.8vw, 2rem);
  letter-spacing: 0;
  text-transform: uppercase;
}

.legacy-line img,
.team-line img {
  width: 64px;
  opacity: .28;
}

.black-panel {
  background: #000;
}

.ownership-image,
.faq-image {
  min-height: 100%;
  overflow: hidden;
}

.ownership-image img,
.faq-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ownership-image img {
  object-position: 55% 50%;
}

.faq-image img {
  object-position: 50% 50%;
}

.partners-section {
  padding: 112px 5.8vw 116px;
  background: var(--cream);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
  margin-top: 106px;
  padding-bottom: 52px;
  border-bottom: 2px solid #4b4b3f;
}

.partner-grid h3 {
  min-height: 76px;
  margin: 0 0 42px;
  color: #111;
  font-size: clamp(1.2rem, 1.65vw, 1.9rem);
  font-weight: 400;
  line-height: 1.1;
}

.partner-logo {
  display: flex;
  align-items: center;
  min-height: 96px;
}

.partner-logo img {
  width: 100%;
  max-width: 230px;
  max-height: 86px;
  object-fit: contain;
  object-position: left center;
}

.team-line {
  margin-top: 86px;
}

.second-home {
  padding: 122px 1rem 156px;
  background: var(--forest);
  color: #f6f4eb;
}

.second-home h2 {
  margin: 0 0 54px;
  color: #f6f4eb;
  font-size: clamp(2.6rem, 4.2vw, 4.5rem);
}

.second-home p {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem);
  line-height: 1.25;
}

.comparison-wrap {
  max-width: 980px;
  margin: 86px auto 0;
}

.comparison-table {
  margin: 0;
  border-color: #9d9d96;
  color: #3c3c3c;
  font-size: 1.05rem;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  border: 1px solid #9d9d96;
}

.comparison-table thead th {
  background: #dec3a2;
  font-size: 1.2rem;
  text-align: center;
}

.comparison-table tbody th {
  width: 25%;
  background: #dec3a2;
  font-weight: 800;
}

.comparison-table tbody td {
  background: rgba(247, 247, 247, .94);
}

.investment-section {
  position: relative;
  padding: 128px 8vw 148px;
  background: var(--paper);
}

.investment-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 70px;
  background: linear-gradient(165deg, #e8d1a5 0 12%, transparent 12% 22%, #e8d1a5 22% 36%, transparent 36% 100%);
  opacity: .45;
  pointer-events: none;
}

.investment-top,
.investment-bottom {
  display: grid;
  gap: 68px;
}

.investment-top {
  grid-template-columns: 1.2fr 1fr 1fr;
  align-items: start;
  padding-bottom: 84px;
  border-bottom: 2px solid #5a5d52;
}

.investment-bottom {
  grid-template-columns: repeat(3, 1fr);
  padding-top: 72px;
}

.investment-mark {
  position: absolute;
  right: 5vw;
  bottom: 70px;
  width: 72px;
  opacity: .85;
}

.faq-section {
  min-height: 790px;
}

.faq-copy {
  padding: 112px 8vw;
  background: var(--cream);
}

.villa-faq {
  max-width: 460px;
  margin-top: 86px;
}

.villa-faq .accordion-item {
  background: transparent;
  border-color: rgba(60, 60, 55, .35);
}

.villa-faq .accordion-button {
  padding: 26px 0;
  background: transparent;
  color: #444;
  box-shadow: none;
  font-size: clamp(1.25rem, 1.7vw, 1.8rem);
}

.villa-faq .accordion-body {
  padding: 0 0 26px;
  color: #555;
  font-size: 1rem;
  line-height: 1.2;
}

.villa-final-cta {
  padding: 96px 1rem 110px;
  background: var(--forest);
  color: #f6f4eb;
}

.cta-mark {
  width: 100px;
  margin-bottom: 42px;
  opacity: .72;
  filter: sepia(.3);
}

.villa-final-cta h2 {
  margin: 0 0 24px;
  color: #f6f4eb;
  font-size: clamp(2.5rem, 4vw, 4.4rem);
}

.villa-final-cta p {
  margin: 0 auto 62px;
  font-size: clamp(1.15rem, 1.55vw, 1.75rem);
}

.discovery-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 34px;
  border: 1px solid rgba(246, 244, 235, .8);
  border-radius: 999px;
  background: #11110f;
  color: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.discovery-btn:hover,
.discovery-btn:focus {
  border-color: var(--gold);
  background: #24241f;
  color: #fff;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .24);
}

.contact-cta .waitlist-btn,
.villa-final-cta .discovery-btn {
  border-color: rgba(246, 244, 235, .82);
  background: transparent;
  color: #f6f4eb;
  box-shadow: none;
}

.contact-cta .waitlist-btn:hover,
.contact-cta .waitlist-btn:focus,
.villa-final-cta .discovery-btn:hover,
.villa-final-cta .discovery-btn:focus {
  border-color: var(--gold);
  background: rgba(255, 216, 77, .12);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18);
}

.web-page {
  background: var(--paper);
}

.web-header {
  position: sticky;
  top: 0;
  inset: auto;
  background: rgba(0, 0, 0, .22);
  backdrop-filter: blur(2px);
}

.web-header .navbar {
  min-height: 88px;
}

.web-header .nav-link {
  color: #fff;
}

.web-header .brand-logo {
  filter: invert(1);
}

.web-header .nav-divider {
  background: rgba(255, 255, 255, .75);
}

.web-hero {
  position: relative;
  min-height: 900px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.web-hero::after,
.return-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
}

.web-hero img,
.web-hero video,
.return-banner img,
.healing-image img,
.location-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-hero > img,
.web-hero > video {
  position: absolute;
  inset: 0;
}

.web-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.web-hero h1 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(4rem, 7.2vw, 7.2rem);
  font-weight: 400;
}

.web-hero p {
  margin: 20px 0 52px;
  color: #e7c643;
  font-size: clamp(1.2rem, 1.8vw, 1.95rem);
  font-weight: 700;
}

.hero-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 17px 34px;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 999px;
  background: rgba(17, 17, 15, .42);
  color: #fff;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
  backdrop-filter: blur(8px);
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
}

.hero-outline-btn:hover,
.hero-outline-btn:focus {
  border-color: var(--gold);
  background: rgba(17, 17, 15, .68);
  color: #fff;
  box-shadow: 0 22px 56px rgba(0, 0, 0, .34);
}

.web-hero-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 48px;
  z-index: 1;
  text-align: center;
  font-size: clamp(1.2rem, 2.1vw, 2.2rem);
}

.difference-section {
  padding: 104px 1rem 120px;
  background: var(--cream);
}

.difference-section h2,
.healing-journey h2,
.wellness-asset h2,
.vengurla-section h2,
.life-swaragya h2,
.gallery-section h2,
.planning-cta h2,
.investor-section h2,
.web-final-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.difference-section h2 {
  margin: 0 0 70px;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
}

.difference-section h2 span {
  font-family: var(--sans);
  font-size: 1.32em;
  font-weight: 600;
}

.venn-wrap {
  position: relative;
  width: min(960px, 100%);
  min-height: 620px;
  margin: 0 auto;
}

.venn-circle {
  position: absolute;
  top: 0;
  width: 560px;
  height: 560px;
  border: 2px solid rgba(0, 0, 0, .48);
  border-radius: 50%;
  display: grid;
  align-content: center;
  padding: 0 94px;
  text-align: left;
}

.venn-circle.science {
  left: 0;
}

.venn-circle.wellness {
  right: 0;
}

.venn-circle h3 {
  margin: 0 0 28px;
  font-size: 2rem;
  font-weight: 400;
}

.venn-circle ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.05rem;
  line-height: 1.25;
}

.venn-overlap {
  position: absolute;
  top: 206px;
  left: 50%;
  width: 250px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 2;
}

.venn-overlap img {
  width: 58px;
  margin-bottom: 34px;
  filter: grayscale(1);
}

.venn-overlap p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.22;
}

.healing-journey {
  display: grid;
  grid-template-columns: 64% 36%;
  background: var(--forest);
  color: #f5f4eb;
}

.healing-copy {
  padding: 118px 6.5vw 96px;
}

.healing-journey h2 {
  margin: 0 0 100px;
  color: #f5f4eb;
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  gap: 76px 112px;
  max-width: 780px;
}

.journey-step span {
  display: block;
  margin-bottom: 22px;
  font-size: 3rem;
}

.journey-step h3 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.journey-step p {
  max-width: 310px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.28;
}

.connected-line {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 88px 0 0;
  text-transform: uppercase;
  color: #f5f4eb;
  font-size: clamp(1.05rem, 1.6vw, 1.8rem);
}

.connected-line img {
  width: 60px;
  opacity: .35;
}

.healing-image {
  min-height: 900px;
  overflow: hidden;
}

.healing-image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.wellness-asset {
  position: relative;
  padding: 170px 6.5vw 178px;
  background: var(--paper);
}

.wellness-asset::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 72px;
  background: linear-gradient(160deg, #ead7b2 0 16%, transparent 16% 28%, #ead7b2 28% 44%, transparent 44% 100%);
  opacity: .5;
}

.wellness-asset .container-fluid {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 48px;
}

.wellness-asset h2 {
  margin: 0;
  color: #4c4a48;
  font-size: clamp(2.9rem, 4.2vw, 5rem);
  line-height: 1.1;
}

.asset-list {
  display: grid;
}

.asset-row {
  display: grid;
  grid-template-columns: 36% 64%;
  gap: 52px;
  padding: 0 0 62px;
  margin-bottom: 62px;
  border-bottom: 1px solid #c9c9c4;
}

.asset-row:last-child {
  margin-bottom: 0;
}

.asset-row h3 {
  margin: 0;
  color: #565452;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.2vw, 2.7rem);
  font-weight: 400;
  line-height: 1.02;
}

.asset-row p {
  max-width: 420px;
  margin: 0;
  font-weight: 700;
  line-height: 1.18;
}

.return-banner {
  position: relative;
  height: 760px;
  overflow: hidden;
}

.return-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  justify-items: center;
  color: #fff;
}

.return-overlay img {
  width: 82px;
  margin-bottom: 42px;
  opacity: .75;
}

.return-overlay p {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 4rem);
}

.vengurla-section {
  padding: 118px 0 80px;
  background: var(--paper);
}

.vengurla-section h2 {
  margin: 0 0 60px;
  color: #565452;
  font-size: clamp(2.7rem, 4.2vw, 5rem);
}

.vengurla-section h3 {
  margin: 0 0 22px;
  color: #6a6863;
  font-size: clamp(1.5rem, 2.1vw, 2.4rem);
  font-weight: 400;
}

.vengurla-section p {
  max-width: 690px;
  margin: 0 auto 118px;
  line-height: 1.2;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px;
  max-width: 980px;
  margin: 0 auto;
}

.location-card h4 {
  min-height: 64px;
  margin: 0 0 22px;
  color: #63615d;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.08;
}

.location-card img {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
}

.distance-strip {
  margin-top: 130px;
  overflow: hidden;
  white-space: nowrap;
}

.distance-track {
  display: flex;
  width: max-content;
  animation: distanceMarquee 34s linear infinite;
  will-change: transform;
}

.distance-strip:hover .distance-track {
  animation-play-state: paused;
}

.distance-group {
  display: flex;
  flex: 0 0 auto;
  gap: 28px;
  padding-right: 28px;
}

.distance-strip span {
  min-width: 270px;
  padding: 18px 28px;
  background: var(--cream);
  text-align: center;
  font-weight: 700;
}

.life-swaragya {
  padding: 112px 1rem 118px;
  background: var(--paper);
}

.life-swaragya h2 {
  color: #565452;
  font-size: clamp(3rem, 4.5vw, 5rem);
}

.life-swaragya p {
  max-width: 530px;
  margin: 0;
  font-weight: 700;
  line-height: 1.22;
}

.gallery-section {
  padding: 0 6.5vw 120px;
  background: var(--paper);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-auto-rows: minmax(260px, 34vw);
  gap: 24px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: span 2;
}

.villa-gallery-section {
  padding: var(--section-y) var(--page-gutter);
  background: var(--paper);
}

.villa-gallery-section h2 {
  margin: 0 0 clamp(2.5rem, 5vw, 4.5rem);
  font-family: var(--serif);
  font-weight: 400;
}

.villa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}

.villa-gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  object-fit: cover;
}

.villa-gallery-grid img:nth-child(4),
.villa-gallery-grid img:nth-child(6) {
  aspect-ratio: 16 / 10;
}

.planning-cta {
  display: grid;
  grid-template-columns: 1.25fr 1fr auto;
  align-items: center;
  gap: 72px;
  padding: 122px 6.5vw;
  background: var(--cream);
}

.planning-cta h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(2.6rem, 4vw, 4.8rem);
  line-height: 1.08;
}

.planning-cta p {
  max-width: 430px;
  margin: 0;
  font-weight: 700;
  line-height: 1.22;
}

.investor-section {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 42px;
  padding: 150px 6.5vw 138px;
  background: var(--forest);
  color: #f5f4eb;
}

.investor-section h2 {
  margin: 0;
  color: #f5f4eb;
  font-size: clamp(2.7rem, 4.1vw, 5rem);
  line-height: 1.12;
}

.investor-list {
  display: grid;
  gap: 82px;
}

.investor-card {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 42px;
  align-items: center;
}

.investor-card img {
  width: 230px;
  height: 190px;
  border-radius: 18px;
  object-fit: cover;
}

.investor-card h3 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 2.4vw, 3.2rem);
  font-weight: 400;
}

.investor-card p,
.investor-card blockquote {
  max-width: 455px;
  margin: 0 0 22px;
  font-size: 1.12rem;
  line-height: 1.24;
}

.investor-card blockquote {
  margin-bottom: 0;
}

.web-final-cta {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
  padding: 90px 1rem;
  overflow: hidden;
  background: var(--cream);
}

.web-final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(232, 228, 220, .64);
}

.web-final-cta video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-final-cta > div {
  position: relative;
  z-index: 2;
}

.web-final-cta h2 {
  margin: 0 0 40px;
  color: #4d4b47;
  font-size: clamp(2.7rem, 4vw, 4.8rem);
}

.web-final-cta p {
  max-width: 650px;
  margin: 0 auto 46px;
  color: #111;
  font-size: clamp(1.15rem, 1.5vw, 1.55rem);
  line-height: 1.18;
}

.web-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(180px, .7fr) minmax(240px, 1fr);
  gap: clamp(36px, 5vw, 78px);
  padding: 92px 9vw 104px;
  overflow: hidden;
  background: var(--paper);
  border-top: 1px solid rgba(48, 72, 50, .18);
  color: var(--ink);
}

.web-footer::before {
  content: "";
  position: absolute;
  inset: 24px 9vw auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(48, 72, 50, .42), rgba(119, 101, 42, .18), transparent);
}

.web-footer::after {
  content: "SWA:RAGYA";
  position: absolute;
  right: -1.5vw;
  bottom: -18px;
  color: rgba(48, 72, 50, .045);
  font-family: var(--serif);
  font-size: clamp(5rem, 13vw, 14rem);
  line-height: .8;
  pointer-events: none;
}

.web-footer .footer-logo {
  width: min(270px, 72vw);
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: .96;
  box-shadow: none;
}

.footer-brand p {
  max-width: 430px;
  margin: 34px 0 0;
  color: #2f312d;
  font-size: 1rem !important;
  font-weight: 600 !important;
  line-height: 1.55 !important;
}

.footer-links,
.footer-contact {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-links h2,
.footer-contact h2 {
  margin: 0 0 16px;
  color: #3e321d;
  font-family: var(--serif);
  font-size: 1.7rem !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
}

.footer-links a,
.footer-contact a {
  color: #171717;
  text-decoration: none;
}

.footer-links a {
  position: relative;
  width: fit-content;
  padding-bottom: 4px;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: #77652a;
  transition: right .25s ease;
}

.footer-contact p {
  max-width: 330px;
  margin: 0;
  color: #23241f;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

.footer-links a:hover,
.footer-links a:focus,
.footer-contact a:hover,
.footer-contact a:focus {
  color: #77652a;
}

.footer-links a:hover::after,
.footer-links a:focus::after {
  right: 0;
}

.contact-page {
  background: var(--paper);
}

.story-page {
  background: var(--paper);
}

.story-hero {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 720px;
  background: var(--cream);
}

.story-hero-copy {
  align-self: center;
  padding: 90px 7vw;
}

.story-hero-copy span,
.story-intro-title span {
  display: block;
  margin-bottom: 30px;
  color: #77652a;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.story-hero h1,
.story-intro h2,
.story-pillars h3,
.story-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.story-hero h1 {
  margin: 0;
  color: #2f2e2a;
  font-size: clamp(3.6rem, 6vw, 6.6rem);
  line-height: 1.02;
}

.story-hero p {
  max-width: 560px;
  margin: 38px 0 0;
  color: #1f211d;
  font-size: clamp(1.12rem, 1.55vw, 1.65rem);
  font-weight: 700;
  line-height: 1.24;
}

.story-logo-panel {
  position: relative;
  display: grid;
  place-items: center;
  padding: 76px 7vw;
  overflow: hidden;
  background: #10130f;
}

.story-logo-panel::before {
  content: "";
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(111, 189, 35, .28);
  border-radius: 50%;
  transform: rotate(-10deg);
}

.story-logo-panel img {
  position: relative;
  width: min(520px, 80%);
  height: auto;
  filter: drop-shadow(0 24px 56px rgba(110, 190, 35, .22));
}

.story-intro {
  padding: 128px 6.5vw;
  background: var(--paper);
}

.story-intro .container-fluid {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 74px;
}

.story-intro h2 {
  margin: 0;
  color: #3e321d;
  font-size: clamp(2.7rem, 4.3vw, 5rem);
  line-height: 1.06;
}

.story-intro-copy {
  display: grid;
  gap: 34px;
  max-width: 790px;
}

.story-intro-copy p {
  margin: 0;
  color: #222;
  font-size: clamp(1.25rem, 2vw, 2.1rem);
  font-weight: 700;
  line-height: 1.18;
}

.story-pillars {
  padding: 112px 6.5vw 126px;
  background: var(--forest);
  color: #f6f4eb;
}

.story-pillars .container-fluid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.story-pillars article {
  min-height: 340px;
  padding: 42px 34px;
  border: 1px solid rgba(246, 244, 235, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .04);
  transition: transform .35s ease, background-color .35s ease, box-shadow .35s ease;
}

.story-pillars article:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 26px 70px rgba(0, 0, 0, .18);
}

.story-pillars span {
  display: block;
  margin-bottom: 56px;
  color: rgba(246, 244, 235, .72);
  font-size: 1.35rem;
}

.story-pillars h3 {
  min-height: 96px;
  margin: 0 0 32px;
  color: #f6f4eb;
  font-size: clamp(2rem, 2.65vw, 3.2rem);
  line-height: 1.02;
}

.story-pillars p {
  max-width: 310px;
  margin: 0;
  color: rgba(246, 244, 235, .86);
  font-weight: 700;
  line-height: 1.22;
}

.story-cta {
  display: grid;
  grid-template-columns: 1.25fr auto;
  align-items: center;
  gap: 72px;
  padding: 112px 6.5vw;
  background: var(--cream);
}

.story-cta h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(2.7rem, 4.2vw, 5rem);
  line-height: 1.08;
}

.story-cta p {
  max-width: 560px;
  margin: 30px 0 0;
  color: #222;
  font-size: clamp(1.08rem, 1.45vw, 1.5rem);
  font-weight: 700;
  line-height: 1.22;
}

.contact-hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #fff;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .46);
}

.contact-hero img:not(.contact-hero-mark) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: contactImageDrift 18s ease-in-out infinite;
  transform-origin: center;
}

.contact-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 880px;
  padding: 0 1rem;
}

.contact-hero-mark {
  width: 86px;
  margin-bottom: 34px;
  opacity: .78;
  animation: contactMarkFloat 5.4s ease-in-out infinite;
}

.contact-hero h1,
.contact-details h2,
.contact-card h3,
.contact-form-section h2,
.contact-cta h2 {
  font-family: var(--serif);
  font-weight: 400;
}

.contact-hero h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.4rem, 6.4vw, 6.8rem);
  line-height: 1.04;
}

.contact-hero p {
  max-width: 690px;
  margin: 28px auto 0;
  color: #e7c643;
  font-size: clamp(1.15rem, 1.7vw, 1.8rem);
  font-weight: 700;
  line-height: 1.24;
}

.contact-details {
  padding: 126px 6.5vw 138px;
  background: var(--cream);
}

.contact-details .container-fluid {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 70px;
  align-items: start;
}

.contact-intro h2 {
  margin: 0;
  color: #3e321d;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 1.08;
}

.contact-intro p {
  max-width: 340px;
  margin: 36px 0 0;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.22;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
}

.contact-card {
  position: relative;
  min-height: 340px;
  padding: 42px 34px 38px;
  border: 1px solid rgba(62, 50, 29, .28);
  border-radius: 8px;
  background: rgba(247, 247, 247, .42);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, background-color .35s ease;
}

.contact-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 36%, rgba(255, 255, 255, .42) 48%, transparent 60% 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-120%) skewX(-18deg);
}

.contact-card:hover {
  transform: translateY(-8px);
  background: rgba(247, 247, 247, .72);
  box-shadow: 0 24px 60px rgba(41, 38, 30, .12);
}

.contact-card:hover::after {
  opacity: 1;
  animation: contactSheen .9s ease;
}

.contact-card span {
  display: block;
  margin-bottom: 52px;
  color: #706a5e;
  font-size: 1.4rem;
}

.contact-card h3 {
  min-height: 94px;
  margin: 0 0 30px;
  color: #545454;
  font-size: clamp(2rem, 2.7vw, 3.2rem);
  line-height: 1.02;
}

.contact-card p {
  margin: 0;
  color: #222;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  font-weight: 700;
  line-height: 1.25;
}

.contact-card a {
  color: inherit;
  text-decoration: none;
}

.contact-card a:hover,
.contact-card a:focus {
  color: #77652a;
}

.contact-form-section {
  padding: 128px 6.5vw 138px;
  background: var(--paper);
}

.contact-form-section .container-fluid {
  display: grid;
  grid-template-columns: 34% 66%;
  gap: 70px;
  align-items: start;
}

.contact-form-copy span {
  display: block;
  margin-bottom: 28px;
  color: #77652a;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-form-copy h2 {
  margin: 0;
  color: #3e321d;
  font-size: clamp(2.6rem, 4vw, 4.6rem);
  line-height: 1.08;
}

.contact-form-copy p {
  max-width: 340px;
  margin: 36px 0 0;
  color: #222;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  font-weight: 700;
  line-height: 1.22;
}

.contact-form {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 30px;
  padding: 44px;
  border: 1px solid rgba(62, 50, 29, .22);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 26px 80px rgba(48, 72, 50, .08);
  overflow: hidden;
  transition: box-shadow .35s ease, transform .35s ease;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 216, 77, .14), transparent 36%, rgba(48, 72, 50, .12));
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.contact-form:focus-within {
  box-shadow: 0 32px 90px rgba(48, 72, 50, .16);
  transform: translateY(-4px);
}

.contact-form:focus-within::before {
  opacity: 1;
}

.form-field {
  position: relative;
  display: grid;
  gap: 12px;
  z-index: 1;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field label {
  color: #2d2c29;
  font-size: .9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(62, 50, 29, .28);
  border-radius: 8px;
  background: rgba(247, 247, 247, .72);
  color: #171717;
  font: 700 1rem / 1.2 var(--sans);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease, background-color .25s ease;
}

.form-field input,
.form-field select {
  min-height: 58px;
  padding: 0 18px;
}

.form-field textarea {
  min-height: 150px;
  padding: 18px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: #fff;
  border-color: #77652a;
  box-shadow: 0 0 0 4px rgba(119, 101, 42, .14);
  transform: translateY(-2px);
  outline: 0;
}

.contact-form button {
  position: relative;
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 12px;
  overflow: hidden;
  z-index: 1;
}

.contact-form button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 0 36%, rgba(255, 255, 255, .3) 48%, transparent 60% 100%);
  transform: translateX(-120%) skewX(-18deg);
}

.contact-form button:hover::after,
.contact-form button:focus::after {
  animation: contactSheen .85s ease;
}

.contact-form button.is-submitting {
  animation: contactSubmitPulse 1.2s ease;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 1.4em;
  margin: 0;
  color: #304832;
  font-size: .95rem !important;
  font-weight: 800 !important;
}

.form-status.is-error {
  color: #8f2e21;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.contact-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 15, .62);
  backdrop-filter: blur(8px);
}

.contact-modal-panel {
  position: relative;
  width: min(940px, 100%);
  max-height: min(860px, 92vh);
  overflow-y: auto;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(246, 244, 235, .52);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .28);
  transform: translateY(18px) scale(.98);
  transition: transform .25s ease;
}

.contact-modal.is-open .contact-modal-panel {
  transform: translateY(0) scale(1);
}

.contact-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(62, 50, 29, .2);
  border-radius: 50%;
  background: var(--cream);
  color: #11110f;
  font-size: 1.65rem;
  line-height: 1;
}

.contact-modal-close:hover,
.contact-modal-close:focus {
  background: #11110f;
  color: #fff;
}

.modal-contact-form {
  margin-top: 34px;
  box-shadow: none;
}

.contact-modal .reveal {
  opacity: 1 !important;
  transform: none !important;
}

.contact-cta {
  display: grid;
  grid-template-columns: 1.2fr auto;
  align-items: center;
  gap: 64px;
  padding: 112px 6.5vw;
  background: var(--forest);
  color: #f6f4eb;
}

.contact-cta h2 {
  margin: 0;
  color: #f6f4eb;
  font-size: clamp(2.8rem, 4.8vw, 5.4rem);
  line-height: 1.08;
}

.contact-cta p {
  max-width: 560px;
  margin: 30px 0 0;
  font-size: clamp(1.12rem, 1.5vw, 1.55rem);
  line-height: 1.22;
}

.contact-map-section {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 52px;
  align-items: center;
  padding: 112px 6.5vw;
  background: var(--cream);
}

.contact-map-copy span {
  display: block;
  margin-bottom: 24px;
  color: #77652a;
  font-size: .95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-map-copy h2 {
  margin: 0;
  color: #3e321d;
  font-family: var(--serif);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 400;
  line-height: 1.08;
}

.contact-map-copy p {
  max-width: 430px;
  margin: 30px 0 0;
  color: #222;
  font-size: clamp(1.08rem, 1.35vw, 1.35rem) !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
}

.contact-map-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(62, 50, 29, .2);
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(48, 72, 50, .1);
}

.contact-map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

@media (max-width: 991.98px) {
  .navbar {
    min-height: auto;
    padding: 1rem 0;
  }

  .navbar-collapse {
    padding-top: 1rem;
  }

  .navbar-nav {
    gap: .25rem;
    align-items: flex-start !important;
  }

  .enquire-btn {
    margin-top: 1rem;
  }

  .hero-video {
    min-height: 520px;
  }

  .image-banner {
    height: 680px;
  }

  .pillars,
  .spaces {
    grid-template-columns: repeat(2, 168px);
    gap: 56px 58px;
  }

  .spaces .wellness-tile {
    width: auto;
  }

  .spaces .wellness-tile:nth-child(n) {
    grid-column: auto;
  }

  .life-stage {
    padding: 96px 5vw;
  }

  .journey-line {
    margin: 0;
    max-width: 100%;
    min-height: 250px;
  }

  .journey-line svg {
    margin-top: 56px;
  }

  .stage {
    font-size: .98rem;
    max-width: 150px;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .villa-hero,
  .villa-video {
    height: 560px;
  }

  .villa-layouts {
    padding: 88px 5vw;
  }

  .plan-card img {
    max-width: 100%;
  }

  .ownership-steps,
  .partner-grid,
  .investment-top,
  .investment-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .privileges-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .black-panel,
  .ownership-image,
  .faq-image {
    min-height: 260px;
  }

  .investment-top h2 {
    grid-column: 1 / -1;
  }

  .web-header {
    background: var(--cream);
  }

  .web-header .nav-link {
    color: var(--ink);
  }

  .web-header .brand-logo {
    filter: none;
  }

  .web-hero {
    min-height: 760px;
  }

  .venn-wrap {
    min-height: 0;
    display: grid;
    gap: 26px;
  }

  .venn-circle,
  .venn-overlap {
    position: static;
    width: auto;
    height: auto;
    min-height: 0;
    transform: none;
    border-radius: 24px;
  }

  .venn-circle {
    padding: 46px;
  }

  .venn-overlap {
    padding: 42px;
    border: 2px solid rgba(0, 0, 0, .35);
    border-radius: 24px;
  }

  .healing-journey,
  .wellness-asset .container-fluid,
  .contact-details .container-fluid,
  .contact-form-section .container-fluid,
  .story-hero,
  .story-intro .container-fluid,
  .planning-cta,
  .contact-cta,
  .contact-map-section,
  .story-cta,
  .investor-section {
    grid-template-columns: 1fr;
  }

  .web-footer {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .healing-image {
    min-height: 520px;
  }

  .asset-row {
    grid-template-columns: 1fr 1.3fr;
  }

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

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

  .story-pillars .container-fluid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }

  .investor-card {
    grid-template-columns: 190px 1fr;
  }

  .investor-card img {
    width: 190px;
    height: 170px;
  }
}

@media (max-width: 575.98px) {
  .brand-logo {
    width: 148px;
    max-height: 46px;
  }

  .hero-video {
    min-height: 430px;
  }

  .video-copy {
    font-size: 3rem;
  }

  .intro-section,
  .wellness-grid,
  .spaces-section {
    padding-left: .75rem;
    padding-right: .75rem;
  }

  .image-banner {
    height: 520px;
  }

  .banner-caption {
    right: 20px;
    bottom: 34px;
  }

  .tile-grid {
    grid-template-columns: repeat(2, minmax(128px, 1fr));
    gap: 46px 18px;
    width: 100%;
  }

  .wellness-tile h3 {
    font-size: 1.35rem;
  }

  .wellness-tile img {
    width: 118px;
    height: 118px;
  }

  .journey-line {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 18px;
    min-height: 0;
  }

  .journey-line svg {
    grid-column: 1 / -1;
    margin-top: 0;
    margin-bottom: 6px;
  }

  .stage {
    position: static;
    width: auto;
    max-width: none;
    font-size: .95rem;
    transform: none;
  }

  .stage-5 {
    grid-column: 1 / -1;
  }

  .cta-copy {
    padding: 72px 8vw;
  }

  .cta-copy p {
    margin: 32px 0 40px;
  }

  .cta-image,
  .cta-section {
    min-height: auto;
  }

  .cta-image {
    height: 520px;
  }

  .villa-wellbeing {
    padding: 72px 1rem;
  }

  .villa-wellbeing p {
    font-size: .95rem;
    line-height: 1.55;
  }

  .villa-hero,
  .villa-video {
    height: 430px;
  }

  .villa-layouts h2 {
    margin-top: 0;
  }

  .ownership-steps,
  .privilege-grid,
  .partner-grid,
  .investment-top,
  .investment-bottom {
    grid-template-columns: 1fr;
  }

  .ownership-steps {
    gap: 34px;
    border-top: 0;
  }

  .ownership-steps article {
    padding-top: 0;
    border-top: 1px solid rgba(255, 255, 255, .72);
  }

  .privileges-copy,
  .faq-copy {
    padding: 80px 8vw;
  }

  .privilege-grid {
    gap: 54px;
    margin-top: 72px;
  }

  .legacy-line,
  .team-line {
    align-items: flex-start;
    font-size: .95rem;
    letter-spacing: 0;
  }

  .partner-grid {
    margin-top: 68px;
  }

  .comparison-table {
    min-width: 760px;
  }

  .investment-section {
    padding: 96px 8vw 132px;
  }

  .investment-top {
    gap: 44px;
    padding-bottom: 52px;
  }

  .investment-bottom {
    gap: 44px;
    padding-top: 52px;
  }

  .investment-mark {
    width: 58px;
  }

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

  .hero-outline-btn,
  .waitlist-btn,
  .discovery-btn {
    width: 100%;
    max-width: 340px;
    padding-right: 24px;
    padding-left: 24px;
    white-space: normal;
  }

  .contact-hero {
    min-height: 590px;
  }

  .web-hero-meta {
    padding: 0 1rem;
    bottom: 28px;
  }

  .difference-section,
  .vengurla-section,
  .life-swaragya,
  .planning-cta,
  .investor-section {
    padding-left: 8vw;
    padding-right: 8vw;
  }

  .venn-circle {
    padding: 34px;
  }

  .healing-copy,
  .wellness-asset,
  .contact-details,
  .contact-form-section,
  .story-intro,
  .story-pillars,
  .contact-cta,
  .contact-map-section,
  .story-cta {
    padding: 86px 8vw;
  }

  .story-hero-copy,
  .story-logo-panel {
    padding: 86px 8vw;
  }

  .journey-grid,
  .asset-row,
  .location-grid,
  .contact-grid,
  .investor-card {
    grid-template-columns: 1fr;
  }

  .contact-card {
    min-height: auto;
  }

  .contact-form {
    padding: 30px 22px;
  }

  .journey-grid {
    gap: 48px;
  }

  .asset-row {
    gap: 20px;
    padding-bottom: 44px;
    margin-bottom: 44px;
  }

  .return-banner {
    height: 520px;
  }

  .vengurla-section p {
    margin-bottom: 72px;
  }

  .distance-strip {
    margin-top: 82px;
  }

  .gallery-section {
    padding: 0 8vw 86px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 340px;
  }

  .gallery-grid img:first-child {
    grid-row: auto;
  }

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

  .planning-cta {
    gap: 34px;
  }

  .investor-list {
    gap: 58px;
  }

  .investor-card img {
    width: 190px;
    height: 170px;
  }

  .web-footer {
    padding: 82px 9vw 96px;
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .web-footer::after {
    right: auto;
    left: 8vw;
    font-size: 4.6rem;
  }

  .footer-links,
  .footer-contact {
    padding: 22px;
  }
}

/* Recreated Life at Swa:Ragya story and gallery. */
.life-swaragya {
  padding-bottom: clamp(3.5rem, 6vw, 5.5rem) !important;
  background: #f2eee1;
}

.life-swaragya > .container-fluid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

.life-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
}

.life-heading > div > span {
  display: block;
  margin-bottom: 1.2rem;
  color: #8a7428;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.life-swaragya .life-heading h2 {
  margin: 0;
  color: #293329;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem) !important;
  font-weight: 400;
  line-height: .98 !important;
  letter-spacing: -.05em;
}

.life-swaragya .life-heading > p {
  max-width: 480px;
  margin: 0 0 .4rem;
  color: #4b544c;
  font-size: 1rem !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

.gallery-section {
  padding-top: 0 !important;
  background: #f2eee1;
}

.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(190px, 19vw, 330px);
  gap: clamp(.8rem, 1.4vw, 1.4rem);
  max-width: 1500px;
  margin: 0 auto;
  overflow-y: hidden;
}

.gallery-section .gallery-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #29372d;
}

.gallery-section .gallery-grid figure:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.gallery-section .gallery-grid figure:nth-child(2) { grid-column: span 5; }
.gallery-section .gallery-grid figure:nth-child(3) { grid-column: span 5; }
.gallery-section .gallery-grid figure:nth-child(4) { grid-column: span 4; }
.gallery-section .gallery-grid figure:nth-child(5) { grid-column: span 4; }
.gallery-section .gallery-grid figure:nth-child(6) { grid-column: span 4; }

.gallery-section .gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 15, 10, .62));
  pointer-events: none;
}

.gallery-section .gallery-grid img,
.gallery-section .gallery-grid img:first-child {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.gallery-section .gallery-grid figcaption {
  position: absolute;
  right: 1.25rem;
  bottom: 1.2rem;
  left: 1.25rem;
  z-index: 2;
  color: rgba(255, 255, 255, .9);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .gallery-section .gallery-grid figure {
    transition: transform .5s cubic-bezier(.2, .75, .25, 1), box-shadow .5s ease;
  }

  .gallery-section .gallery-grid img {
    transition: transform .85s cubic-bezier(.2, .75, .25, 1), filter .85s ease;
  }

  .gallery-section .gallery-grid figure:hover {
    z-index: 2;
    box-shadow: 0 30px 60px rgba(35, 45, 37, .2);
    transform: translateY(-8px);
  }

  .gallery-section .gallery-grid figure:hover img {
    filter: saturate(1.08);
    transform: scale(1.045);
  }
}

@media (max-width: 991.98px) {
  .life-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gallery-section .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 360px;
  }

  .gallery-section .gallery-grid figure,
  .gallery-section .gallery-grid figure:nth-child(1),
  .gallery-section .gallery-grid figure:nth-child(2),
  .gallery-section .gallery-grid figure:nth-child(3),
  .gallery-section .gallery-grid figure:nth-child(4),
  .gallery-section .gallery-grid figure:nth-child(5),
  .gallery-section .gallery-grid figure:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 575.98px) {
  .life-swaragya {
    padding: 4.75rem 1.25rem 3rem !important;
  }

  .life-heading h2 br {
    display: none;
  }

  .gallery-section {
    padding: 0 1.25rem 4.75rem !important;
    overflow: hidden;
  }

  .gallery-section .gallery-grid {
    display: flex;
    gap: .85rem;
    margin-right: -1.25rem;
    padding-right: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .gallery-section .gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .gallery-section .gallery-grid figure,
  .gallery-section .gallery-grid figure:nth-child(1),
  .gallery-section .gallery-grid figure:nth-child(2),
  .gallery-section .gallery-grid figure:nth-child(3),
  .gallery-section .gallery-grid figure:nth-child(4),
  .gallery-section .gallery-grid figure:nth-child(5),
  .gallery-section .gallery-grid figure:nth-child(6) {
    flex: 0 0 86%;
    height: 480px;
    scroll-snap-align: start;
  }
}

/* Recreated Vengurla destination section. */
.vengurla-section {
  position: relative;
  overflow: hidden;
  background: #f3efe2;
}

.vengurla-section > .container-fluid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

.vengurla-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 470px);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 6.5rem);
}

.vengurla-heading > div:first-child > span {
  display: block;
  margin-bottom: 1.2rem;
  color: #8a7428;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.vengurla-section .vengurla-heading h2 {
  margin: 0;
  color: #293329;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem) !important;
  font-weight: 400;
  line-height: .98 !important;
  letter-spacing: -.05em;
}

.vengurla-section .vengurla-intro h3 {
  margin: 0 0 1.1rem;
  color: #303b32;
  font-family: var(--serif);
  font-size: clamp(1.55rem, 2vw, 2.15rem) !important;
  font-weight: 400 !important;
}

.vengurla-section .vengurla-intro p {
  max-width: 470px;
  margin: 0;
  color: #4b544c;
  font-size: 1rem !important;
  line-height: 1.65 !important;
}

.vengurla-section .location-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(.85rem, 1.6vw, 1.5rem);
  max-width: none;
  margin: 0;
  overflow-y: hidden;
}

.vengurla-section .location-card {
  position: relative;
  min-height: clamp(390px, 38vw, 560px);
  overflow: hidden;
  background: #29372d;
}

.vengurla-section .location-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 15, 10, .08) 30%, rgba(8, 15, 10, .78) 100%);
  pointer-events: none;
}

.vengurla-section .location-card > span {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 50%;
  color: #fff;
  font-size: .66rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.vengurla-section .location-card h4 {
  position: absolute;
  right: 1.4rem;
  bottom: 1.5rem;
  left: 1.4rem;
  z-index: 2;
  min-height: 0;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.15vw, 2.35rem) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
  letter-spacing: -.03em;
}

.vengurla-section .location-card img {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 0;
  object-fit: cover;
}

.vengurla-section .distance-strip {
  margin-top: clamp(4rem, 7vw, 7rem);
}

.vengurla-section .distance-strip span {
  min-width: 260px;
  padding: 1rem 1.5rem;
  border: 1px solid rgba(43, 56, 46, .12);
  background: rgba(255, 255, 255, .45);
  color: #344037;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .vengurla-section .location-card {
    transition: transform .5s cubic-bezier(.2, .75, .25, 1), box-shadow .5s ease;
  }

  .vengurla-section .location-card img {
    transition: transform .8s cubic-bezier(.2, .75, .25, 1), filter .8s ease;
  }

  .vengurla-section .location-card:hover {
    z-index: 2;
    box-shadow: 0 30px 60px rgba(35, 45, 37, .18);
    transform: translateY(-10px);
  }

  .vengurla-section .location-card:hover img {
    filter: saturate(1.08);
    transform: scale(1.055);
  }
}

@media (max-width: 991.98px) {
  .vengurla-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

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

@media (max-width: 575.98px) {
  .vengurla-section {
    padding: 4.75rem 1.25rem !important;
  }

  .vengurla-heading {
    margin-bottom: 2.75rem;
  }

  .vengurla-heading h2 br {
    display: none;
  }

  .vengurla-section .location-grid {
    display: flex;
    gap: .85rem;
    margin-right: -1.25rem;
    padding-right: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .vengurla-section .location-grid::-webkit-scrollbar {
    display: none;
  }

  .vengurla-section .location-card {
    flex: 0 0 84%;
    min-height: 470px;
    scroll-snap-align: start;
  }

  .vengurla-section .distance-strip {
    margin-right: -1.25rem;
    margin-left: -1.25rem;
  }
}

/* Recreated healing journey section. */
.healing-journey {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, .75fr);
  min-height: 920px;
  background: #2b392f;
  color: #fff;
}

.healing-copy {
  padding: clamp(6rem, 8vw, 8.5rem) var(--page-gutter) !important;
}

.healing-heading {
  margin-bottom: clamp(3.5rem, 6vw, 5.5rem);
}

.healing-heading > span {
  display: block;
  margin-bottom: 1.2rem;
  color: #dec96e;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.healing-journey .healing-heading h2 {
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.4rem) !important;
  font-weight: 400;
  line-height: .98 !important;
  letter-spacing: -.05em;
}

.healing-journey .journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 1fr));
  gap: 1rem;
  max-width: 920px;
}

.healing-journey .journey-step {
  position: relative;
  min-height: 265px;
  padding: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .045);
}

.healing-journey .journey-step::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -54px;
  width: 135px;
  height: 135px;
  border: 1px solid rgba(222, 201, 110, .12);
  border-radius: 50%;
  transition: transform .5s ease;
}

.healing-journey .journey-step:hover::after {
  transform: scale(1.35);
}

.healing-journey .journey-step > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0 0 2rem;
  place-items: center;
  border: 1px solid rgba(222, 201, 110, .72);
  border-radius: 50%;
  color: #dec96e;
  font-size: .68rem !important;
  font-weight: 800;
}

.healing-journey .journey-step h3 {
  margin: 0 0 .85rem;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.1vw, 2.25rem) !important;
  font-weight: 400 !important;
}

.healing-journey .journey-step p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, .68);
  font-size: .96rem !important;
  line-height: 1.6 !important;
}

.healing-journey .connected-line {
  display: inline-flex;
  margin: 3.25rem 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: .76rem !important;
  font-weight: 800;
  letter-spacing: .14em;
}

.healing-journey .connected-line img {
  width: 42px;
  filter: grayscale(1) brightness(2.2);
  opacity: .42;
}

.healing-image {
  position: relative;
  min-height: 920px;
}

.healing-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(8, 16, 10, .64));
  pointer-events: none;
}

.healing-image picture,
.healing-image picture img {
  width: 100%;
  height: 100%;
}

.healing-image-caption {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  left: clamp(1.5rem, 3vw, 3rem);
  z-index: 2;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, .35);
  color: #fff;
}

.healing-image-caption > span {
  display: block;
  margin-bottom: .65rem;
  color: #dec96e;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.healing-image-caption p {
  max-width: 330px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: .95rem !important;
  line-height: 1.55 !important;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .healing-journey .journey-step {
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), background-color .45s ease, box-shadow .45s ease;
  }

  .healing-journey .journey-step:hover {
    z-index: 1;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 24px 54px rgba(8, 15, 10, .18);
    transform: translateY(-8px);
  }

  .healing-image img {
    transition: transform 1.1s cubic-bezier(.2, .75, .25, 1), filter 1.1s ease;
  }

  .healing-image:hover img {
    filter: saturate(1.06);
    transform: scale(1.025);
  }
}

@media (max-width: 991.98px) {
  .healing-journey {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .healing-image {
    min-height: 600px;
  }
}

@media (max-width: 575.98px) {
  .healing-copy {
    padding: 4.75rem 1.25rem !important;
  }

  .healing-heading {
    margin-bottom: 2.75rem;
  }

  .healing-heading h2 br {
    display: none;
  }

  .healing-journey .journey-grid {
    grid-template-columns: 1fr;
    gap: .8rem;
  }

  .healing-journey .journey-step {
    min-height: 0;
    padding: 1.4rem;
  }

  .healing-journey .journey-step > span {
    margin-bottom: 1.25rem;
  }

  .healing-journey .journey-step p {
    font-size: 1rem !important;
  }

  .healing-journey .connected-line {
    margin-top: 2.25rem;
  }

  .healing-image {
    min-height: 450px;
  }

  .healing-image-caption {
    right: 1.25rem;
    bottom: 1.5rem;
    left: 1.25rem;
  }
}

/* Recreated Swa:Ragya difference section. */
.difference-section {
  position: relative;
  overflow: hidden;
  background: #f2eee1;
}

.difference-section::before {
  content: "";
  position: absolute;
  top: -220px;
  right: -180px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(130, 109, 37, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(130, 109, 37, .035), 0 0 0 140px rgba(130, 109, 37, .02);
  pointer-events: none;
}

.difference-section > .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

.difference-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  align-items: end;
  margin-bottom: clamp(4rem, 7vw, 7rem);
}

.difference-heading > div > span {
  display: block;
  margin-bottom: 1.2rem;
  color: #8a7428;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.difference-heading h2 {
  margin: 0;
  color: #293329;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem) !important;
  font-weight: 400;
  line-height: .98 !important;
  letter-spacing: -.05em;
}

.difference-heading h2 strong {
  font-family: var(--sans);
  font-size: .82em;
  font-weight: 650;
  letter-spacing: -.04em;
}

.difference-heading > p {
  margin: 0 0 .4rem;
  color: #4b544c;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
}

.difference-framework {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr) minmax(0, 1fr);
  border: 1px solid rgba(43, 56, 46, .16);
  background: rgba(255, 255, 255, .35);
  box-shadow: 0 30px 70px rgba(37, 48, 39, .07);
}

.difference-column {
  padding: clamp(2rem, 3.5vw, 3.6rem);
}

.difference-column-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(43, 56, 46, .16);
}

.difference-column-title > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid #917a2b;
  border-radius: 50%;
  color: #7f6a25;
  font-size: .68rem;
  font-weight: 800;
}

.difference-column h3 {
  margin: 0;
  color: #293329;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.7vw, 3rem) !important;
  font-weight: 400 !important;
}

.difference-column ul,
.difference-core ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.difference-column > ul {
  margin-top: 1.6rem;
}

.difference-column > ul li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(43, 56, 46, .1);
  color: #6a716b;
  font-size: .85rem;
  line-height: 1.35;
}

.difference-column > ul li:last-child {
  border-bottom: 0;
}

.difference-column > ul li > span {
  display: block;
  margin-bottom: .28rem;
  color: #313c33;
  font-size: .98rem;
  font-weight: 700;
}

.difference-core {
  position: relative;
  display: flex;
  padding: clamp(2.5rem, 4vw, 4.2rem) clamp(1.8rem, 3vw, 3rem);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: #2d3b31;
  color: #fff;
  text-align: center;
}

.difference-core::before,
.difference-core::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.difference-core::before {
  top: -170px;
  left: -150px;
}

.difference-core::after {
  right: -165px;
  bottom: -175px;
}

.difference-core > span {
  color: #dec96e;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.difference-core > img {
  width: 62px;
  margin: 2rem 0 1.5rem;
  filter: grayscale(1) brightness(2.2);
  opacity: .78;
}

.difference-core h3 {
  margin: 0 0 2rem;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2rem, 2.6vw, 2.8rem) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
}

.difference-core ul {
  display: grid;
  gap: .55rem;
}

.difference-core li {
  color: rgba(255, 255, 255, .7);
  font-size: .83rem;
  line-height: 1.35;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .difference-column,
  .difference-core {
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), box-shadow .45s ease;
  }

  .difference-column:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 54px rgba(37, 48, 39, .09);
  }

  .difference-core:hover {
    transform: translateY(-8px) scale(1.012);
    box-shadow: 0 28px 62px rgba(20, 30, 23, .22);
  }
}

@media (max-width: 991.98px) {
  .difference-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .difference-framework {
    grid-template-columns: 1fr 1fr;
  }

  .difference-core {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 420px;
  }
}

@media (max-width: 575.98px) {
  .difference-section {
    padding: 4.75rem 1.25rem !important;
  }

  .difference-heading {
    margin-bottom: 2.75rem;
  }

  .difference-heading h2 br {
    display: none;
  }

  .difference-heading > p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .difference-framework {
    grid-template-columns: 1fr;
    gap: .8rem;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .difference-core,
  .difference-column {
    grid-column: auto;
    padding: 1.5rem;
    border: 1px solid rgba(43, 56, 46, .14);
  }

  .difference-core {
    grid-row: auto;
    min-height: 390px;
    order: -1;
  }

  .difference-column {
    background: rgba(255, 255, 255, .48);
  }
}

/* Sanctuary page: polished mobile experience. */
@media (max-width: 767.98px) {
  .sanctuary-page {
    overflow-x: hidden;
  }

  .hero-video {
    min-height: calc(100svh - 72px) !important;
    padding: 0 !important;
  }

  .hero-video > video {
    object-position: 58% center;
  }

  .sanctuary-hero-copy {
    padding-bottom: 4.5rem;
  }

  .sanctuary-hero-copy p {
    max-width: 31rem;
  }

  .pillars-section,
  .spaces-section {
    padding: 4.75rem 0 !important;
  }

  .pillars-section {
    background: #f5f1e5;
  }

  .spaces-section {
    background: #303e31;
    color: #fff;
  }

  .pillars-section .container-fluid,
  .spaces-section .container-fluid {
    max-width: none;
    padding: 0 0 0 1.25rem !important;
  }

  .pillars-section h2,
  .spaces-section h2,
  .life-stage h2,
  .cta-copy h2 {
    max-width: calc(100% - 1.25rem);
    margin: 0;
    font-size: clamp(2.5rem, 11vw, 3.6rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -.045em;
  }

  .spaces-section h2 {
    color: #fff;
  }

  .pillars-section h2::after,
  .spaces-section h2::after {
    content: "Swipe to explore \2192";
    display: block;
    margin-top: 1rem;
    color: #806c27;
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .spaces-section h2::after {
    color: #d9c872;
  }

  .pillar-slider {
    margin-top: 2.25rem !important;
  }

  .pillar-track {
    gap: .9rem;
    padding: 0 1.25rem .75rem 0 !important;
    scroll-padding-left: 0;
  }

  .wellness-tile.pillar-slide {
    flex: 0 0 84%;
    min-height: 500px;
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(24, 29, 21, .14);
  }

  .wellness-tile.pillar-slide::before {
    background: linear-gradient(180deg, rgba(8, 15, 10, .67) 0%, rgba(8, 15, 10, .12) 42%, rgba(8, 15, 10, .5) 100%);
  }

  .wellness-tile.pillar-slide h3 {
    inset: 1.1rem 1.1rem auto;
    width: fit-content;
    max-width: calc(100% - 2.2rem);
    padding: .7rem .9rem;
    border-color: rgba(255, 255, 255, .38);
    background: rgba(15, 25, 17, .54);
    font-size: .86rem !important;
    line-height: 1.25 !important;
    letter-spacing: .07em;
    backdrop-filter: blur(8px);
  }

  .pillar-slider-controls {
    display: none;
  }

  .life-stage {
    padding: 4.75rem 1.25rem !important;
    background: #27362b;
  }

  .life-stage h2 {
    max-width: 340px;
    margin-bottom: 2.5rem;
  }

  .life-stage h2 br {
    display: none;
  }

  .life-stage .row,
  .life-stage .row > * {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  .journey-line {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: .75rem !important;
    min-height: 0;
    margin: 0;
  }

  .journey-line svg {
    display: none;
  }

  .journey-line .stage {
    position: relative;
    top: auto;
    left: auto;
    display: flex;
    width: 100%;
    max-width: none;
    min-height: 68px;
    padding: 1rem 1rem 1rem 4rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 12px;
    background: rgba(255, 255, 255, .055);
    color: rgba(255, 255, 255, .92);
    font-size: 1rem !important;
    line-height: 1.35 !important;
    text-align: left;
    transform: none;
  }

  .journey-line .stage::before {
    position: absolute;
    left: 1rem;
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid #d9c872;
    border-radius: 50%;
    color: #d9c872;
    font-size: .67rem;
    font-weight: 800;
  }

  .journey-line .stage-1::before { content: "01"; }
  .journey-line .stage-2::before { content: "02"; }
  .journey-line .stage-3::before { content: "03"; }
  .journey-line .stage-4::before { content: "04"; }
  .journey-line .stage-5::before { content: "05"; }

  .cta-section {
    display: flex !important;
    min-height: 0;
    flex-direction: column-reverse;
    background: #f2eddd;
  }

  .cta-image {
    height: 390px;
    min-height: 0 !important;
  }

  .cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% center;
  }

  .cta-copy {
    padding: 4.5rem 1.25rem 4.75rem !important;
  }

  .cta-copy h2 br {
    display: none;
  }

  .cta-copy p {
    margin: 1.5rem 0 2rem;
    color: #3d463e;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .cta-copy .waitlist-btn {
    width: 100%;
    min-height: 56px;
    border-radius: 2px;
    background: #303e31;
    font-size: .78rem;
    letter-spacing: .09em;
  }
}

/* Homepage overflow containment. Keeps decorative and animated layers in-canvas. */
html:has(body.web-page),
body.web-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body.web-page main,
body.web-page main > section,
body.web-page .web-footer {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

body.web-page main > section {
  overflow-x: hidden;
  overflow-x: clip;
}

body.web-page .difference-section > *,
body.web-page .healing-journey > *,
body.web-page .wellness-asset > *,
body.web-page .vengurla-section > *,
body.web-page .life-swaragya > *,
body.web-page .gallery-section > *,
body.web-page .planning-cta > *,
body.web-page .investor-section > *,
body.web-page .web-final-cta > *,
body.web-page .row,
body.web-page .row > * {
  min-width: 0;
  max-width: 100%;
}

body.web-page img,
body.web-page video,
body.web-page svg {
  max-width: 100%;
}

body.web-page .web-hero > video,
body.web-page .gallery-item img,
body.web-page .journey-image img,
body.web-page .wellness-image img,
body.web-page .vengurla-image img {
  max-width: none;
}

body.web-page .web-hero,
body.web-page .difference-section,
body.web-page .healing-journey,
body.web-page .wellness-asset,
body.web-page .return-banner,
body.web-page .vengurla-section,
body.web-page .life-swaragya,
body.web-page .gallery-section,
body.web-page .planning-cta,
body.web-page .investor-section,
body.web-page .web-final-cta,
body.web-page .web-footer {
  contain: paint;
}

@media (max-width: 575.98px) {
  body.web-page .container,
  body.web-page .container-fluid {
    min-width: 0;
    max-width: 100%;
  }

  body.web-page .gallery-grid,
  body.web-page .difference-grid,
  body.web-page .investor-grid,
  body.web-page .distance-strip {
    min-width: 0;
    max-width: 100%;
  }
}

/* Final cross-site background contrast audit. */
:root {
  --contrast-ink: #293329;
  --contrast-copy: #465047;
  --contrast-paper: #f7f3e8;
  --contrast-paper-muted: rgba(247, 243, 232, .76);
  --contrast-gold-dark: #756322;
  --contrast-gold-light: #dec96e;
}

/* Homepage: explicit light and dark section typography. */
.web-page .difference-section,
.web-page .wellness-asset,
.web-page .vengurla-section,
.web-page .life-swaragya,
.web-page .gallery-section,
.web-page .planning-cta,
.web-page .web-final-cta {
  color: var(--contrast-ink);
}

.web-page .difference-section h2,
.web-page .difference-section h3,
.web-page .wellness-asset h2,
.web-page .wellness-asset h3,
.web-page .vengurla-section h2,
.web-page .vengurla-section h3,
.web-page .life-swaragya h2,
.web-page .gallery-section h2,
.web-page .planning-cta h2,
.web-page .web-final-cta h2 {
  color: var(--contrast-ink);
}

.web-page .difference-section p,
.web-page .wellness-asset p,
.web-page .vengurla-section p,
.web-page .life-swaragya p,
.web-page .planning-cta p,
.web-page .web-final-cta p {
  color: var(--contrast-copy);
}

.web-page .healing-journey,
.web-page .return-banner,
.web-page .investor-section {
  color: var(--contrast-paper);
}

.web-page .healing-journey h2,
.web-page .healing-journey h3,
.web-page .return-banner h2,
.web-page .investor-title h2 {
  color: var(--contrast-paper);
}

.web-page .healing-journey p,
.web-page .return-banner p,
.web-page .investor-title p {
  color: var(--contrast-paper-muted);
}

/* Sanctuary: reinforce the alternating light/dark system. */
.sanctuary-page .pillars-section,
.sanctuary-page .spaces-section,
.sanctuary-page .cta-section {
  color: var(--contrast-ink);
}

.sanctuary-page .pillars-section h2,
.sanctuary-page .spaces-section h2,
.sanctuary-page .cta-section h2 {
  color: var(--contrast-ink);
}

.sanctuary-page .life-stage {
  color: var(--contrast-paper);
}

.sanctuary-page .life-stage h2,
.sanctuary-page .life-stage .stage {
  color: var(--contrast-paper);
}

/* Villas: light editorial sections and image-backed dark sections. */
.villas-page .villa-layouts,
.villas-page .villa-gallery-section,
.villas-page .privileges-section,
.villas-page .partners-section,
.villas-page .investment-section,
.villas-page .faq-section,
.villas-page .villa-final-cta {
  color: var(--contrast-ink);
}

.villas-page .villa-layouts h2,
.villas-page .villa-gallery-section h2,
.villas-page .privileges-section h2,
.villas-page .partners-section h2,
.villas-page .investment-section h2,
.villas-page .faq-section h2,
.villas-page .villa-final-cta h2 {
  color: var(--contrast-ink);
}

.villas-page .second-home {
  color: var(--contrast-paper);
}

.villas-page .second-home h2,
.villas-page .second-home h3 {
  color: var(--contrast-paper);
}

@media (min-width: 768px) {
  .villas-page .ownership-model,
  .villas-page .ownership-model h2,
  .villas-page .ownership-model h3 {
    color: var(--contrast-paper);
  }

  .villas-page .ownership-model p {
    color: var(--contrast-paper-muted);
  }
}

@media (max-width: 767.98px) {
  .villas-page .ownership-model,
  .villas-page .ownership-model h2,
  .villas-page .ownership-model h3,
  .villas-page .ownership-model p {
    color: var(--contrast-ink);
  }
}

/* Mobile alignment system shared across every page. */
@media (max-width: 575.98px) {
  body.web-page main > section,
  body.sanctuary-page main > section,
  body.villas-page main > section,
  body.contact-page main > section,
  body.story-page main > section {
    text-align: center;
  }

  body :is(
    .pillars-heading,
    .life-stage-heading,
    .spaces-heading,
    .villa-section-heading,
    .privileges-heading,
    .faq-heading,
    .contact-intro,
    .contact-form-copy,
    .contact-map-copy,
    .story-intro-title,
    .story-pillars-heading,
    .story-vision-copy,
    .investor-title,
    .villa-final-cta-copy
  ) {
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  body main > section :is(h1, h2, h3, p),
  body main > section :is(.subtitle, .section-label, .hero-kicker),
  body .web-footer :is(h2, p) {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  body main > section :is(.btn, .discovery-btn, .waitlist-btn, .story-text-link, .hero-scroll-cue) {
    margin-right: auto;
    margin-left: auto;
  }

  body main > section :is(img, svg) {
    margin-right: auto;
    margin-left: auto;
  }

  body :is(
    .difference-grid,
    .journey-grid,
    .ownership-steps,
    .privilege-grid,
    .partner-grid,
    .investment-top,
    .investment-bottom,
    .story-scope .container-fluid,
    .story-pillars .container-fluid,
    .contact-grid
  ) > * {
    justify-items: center;
    text-align: center;
  }

  body .life-stage .stage {
    justify-content: center;
    text-align: center;
  }

  body .web-footer {
    justify-items: center;
    text-align: center;
  }

  body .web-footer :is(.footer-brand, .footer-links, .footer-contact) {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  body .web-footer .footer-links a {
    margin-right: auto;
    margin-left: auto;
  }

  /* Interactive reading areas remain left aligned. */
  body :is(.contact-form, .modal-contact-form, .villa-faq .accordion-body, .villa-faq .accordion-button) {
    text-align: left;
  }

  body :is(.contact-form, .modal-contact-form) :is(label, input, select, textarea) {
    text-align: left;
  }
}

/* Contact: paper details, dark form, paper map. */
.contact-page .contact-details,
.contact-page .contact-map-section {
  color: var(--contrast-ink);
}

.contact-page .contact-details h2,
.contact-page .contact-details h3,
.contact-page .contact-map-section h2,
.contact-page .contact-map-section h3 {
  color: var(--contrast-ink);
}

.contact-page .contact-form-section,
.contact-page .contact-form-section h2,
.contact-page .contact-form-section h3,
.contact-page .contact-form-section label {
  color: var(--contrast-paper);
}

/* Our Story: maintain readable type across paper, forest and sand. */
.story-page .story-intro,
.story-page .story-scope,
.story-page .story-vision,
.story-page .story-cta {
  color: var(--contrast-ink);
}

.story-page .story-intro h2,
.story-page .story-scope h2,
.story-page .story-scope h3,
.story-page .story-vision h2,
.story-page .story-cta h2 {
  color: var(--contrast-ink);
}

.story-page .story-pillars,
.story-page .story-pillars h2,
.story-page .story-pillars h3 {
  color: var(--contrast-paper);
}

.story-page .story-pillars p {
  color: var(--contrast-paper-muted);
}

/* Stronger eyebrow contrast on every light surface. */
.web-page .difference-section .section-label,
.web-page .wellness-asset .section-label,
.web-page .vengurla-section .section-label,
.villas-page .villa-section-heading > div > span,
.story-page .story-intro-title span,
.story-page .story-vision-copy > span,
.contact-page .contact-intro > span,
.contact-page .contact-map-copy > span {
  color: var(--contrast-gold-dark);
}

/* Recreated contact page. */
.contact-page {
  background: #f4f1e6;
}

.contact-page .contact-hero {
  min-height: clamp(690px, 86vh, 880px);
}

.contact-page .contact-hero::after {
  background: linear-gradient(90deg, rgba(7, 15, 10, .78), rgba(7, 15, 10, .48) 48%, rgba(7, 15, 10, .15));
}

.contact-page .contact-hero-copy {
  width: min(760px, calc(100% - 2 * var(--page-gutter)));
}

.contact-page .contact-details {
  padding: clamp(6rem, 9vw, 9rem) var(--page-gutter) !important;
  background: #f4f1e6;
}

.contact-page .contact-details .container-fluid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 9rem) !important;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

.contact-page .contact-intro > span,
.contact-page .contact-form-copy > span,
.contact-page .contact-map-copy > span {
  display: block;
  margin-bottom: 1.25rem;
  color: #8b752a;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-page .contact-intro h2,
.contact-page .contact-form-copy h2,
.contact-page .contact-map-copy h2 {
  margin: 0;
  color: #293329;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.7vw, 5rem) !important;
  font-weight: 400;
  line-height: 1 !important;
  letter-spacing: -.045em;
}

.contact-page .contact-intro > p,
.contact-page .contact-form-copy > p,
.contact-page .contact-map-copy > p {
  max-width: 520px;
  margin: 1.75rem 0 0;
  color: #4b544c;
  font-size: 1.02rem !important;
  line-height: 1.65 !important;
}

.contact-page .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(42, 54, 44, .18);
}

.contact-page .contact-card {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 1.5rem;
  min-height: 150px;
  padding: 1.8rem 0;
  align-items: start;
  border: 0;
  border-bottom: 1px solid rgba(42, 54, 44, .18);
  background: transparent;
  transition: padding-left .35s ease, background-color .35s ease;
}

.contact-page .contact-card:hover {
  padding-left: 1rem;
  background: rgba(255, 255, 255, .38);
}

.contact-page .contact-card > span {
  display: grid;
  width: 38px;
  height: 38px;
  margin: 0;
  place-items: center;
  border: 1px solid #927b2c;
  border-radius: 50%;
  color: #806b26;
  font-size: .68rem;
  font-weight: 800;
}

.contact-page .contact-card h3 {
  margin: 0 0 .75rem;
  color: #293329;
  font-size: 1.35rem !important;
}

.contact-page .contact-card p,
.contact-page .contact-card a {
  margin: 0;
  color: #4b544c;
  font-size: 1rem !important;
  line-height: 1.55 !important;
}

.contact-page .contact-card a:hover,
.contact-page .contact-card a:focus {
  color: #806b26;
}

.contact-page .contact-form-section {
  padding: clamp(6rem, 9vw, 9rem) var(--page-gutter) !important;
  background: #2b392f;
  color: #fff;
}

.contact-page .contact-form-section .container-fluid {
  display: grid;
  grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 9rem) !important;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  align-items: start;
}

.contact-page .contact-form-copy h2 {
  color: #fff;
}

.contact-page .contact-form-copy > span {
  color: #dec96e;
}

.contact-page .contact-form-copy > p {
  color: rgba(255, 255, 255, .7);
}

.contact-response-note {
  max-width: 430px;
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.contact-response-note strong {
  display: block;
  margin-bottom: .6rem;
  color: #dec96e;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-response-note p {
  margin: 0;
  color: rgba(255, 255, 255, .64);
  font-size: .9rem !important;
  line-height: 1.55 !important;
}

.contact-page .contact-form-section .contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .055);
  box-shadow: 0 30px 70px rgba(8, 15, 10, .18);
}

.contact-page .contact-form-section .contact-form label {
  margin-bottom: .55rem;
  color: rgba(255, 255, 255, .7);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-page .contact-form-section .contact-form input,
.contact-page .contact-form-section .contact-form select,
.contact-page .contact-form-section .contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  border-radius: 0;
  background: transparent;
  color: #fff;
  box-shadow: none;
}

.contact-page .contact-form-section .contact-form input,
.contact-page .contact-form-section .contact-form select {
  min-height: 52px;
}

.contact-page .contact-form-section .contact-form textarea {
  padding-top: .8rem;
  resize: vertical;
}

.contact-page .contact-form-section .contact-form input::placeholder,
.contact-page .contact-form-section .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .42);
}

.contact-page .contact-form-section .contact-form input:focus,
.contact-page .contact-form-section .contact-form select:focus,
.contact-page .contact-form-section .contact-form textarea:focus {
  border-bottom-color: #dec96e;
  outline: 0;
}

.contact-page .contact-form-section .contact-form select option {
  background: #2b392f;
  color: #fff;
}

.contact-page .contact-form-section .contact-form .discovery-btn {
  width: fit-content;
  min-width: 190px;
  border-radius: 2px;
  background: #dec96e;
  color: #253128;
  font-size: .76rem;
  letter-spacing: .09em;
}

.contact-page .contact-map-section {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 0 !important;
  padding: 0 !important;
  background: #ede8d9;
}

.contact-page .contact-map-copy {
  padding: clamp(4.5rem, 7vw, 7rem) var(--page-gutter);
  align-self: center;
}

.contact-page .contact-map-copy h2 {
  font-size: clamp(2.8rem, 4.3vw, 4.6rem) !important;
}

.contact-page .contact-map-copy a {
  display: inline-block;
  margin-top: 2rem;
  padding-bottom: .35rem;
  border-bottom: 1px solid #7d6924;
  color: #293329;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.contact-page .contact-map-frame {
  min-height: 620px;
}

.contact-page .contact-map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 620px;
  border: 0;
  filter: grayscale(.85) sepia(.12) contrast(.9);
}

@media (max-width: 991.98px) {
  .contact-page .contact-details .container-fluid,
  .contact-page .contact-form-section .container-fluid,
  .contact-page .contact-map-section {
    grid-template-columns: 1fr;
  }

  .contact-page .contact-intro {
    max-width: 680px;
  }

  .contact-page .contact-map-frame,
  .contact-page .contact-map-frame iframe {
    min-height: 480px;
  }
}

@media (max-width: 767.98px) {
  .contact-page .contact-hero {
    min-height: calc(100svh - 72px);
  }

  .contact-page .contact-hero::after {
    background: linear-gradient(180deg, rgba(7, 15, 10, .16), rgba(7, 15, 10, .88));
  }

  .contact-page .contact-details,
  .contact-page .contact-form-section {
    padding: 4.75rem 1.25rem !important;
  }

  .contact-page .contact-intro h2 br,
  .contact-page .contact-form-copy h2 br {
    display: none;
  }

  .contact-page .contact-intro h2,
  .contact-page .contact-form-copy h2,
  .contact-page .contact-map-copy h2 {
    font-size: clamp(2.55rem, 11vw, 3.5rem) !important;
  }

  .contact-page .contact-card {
    grid-template-columns: 44px 1fr;
    gap: 1rem;
    min-height: 0;
    padding: 1.4rem 0;
  }

  .contact-page .contact-form-section .contact-form {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .contact-page .contact-form-section .contact-form .discovery-btn {
    width: 100%;
  }

  .contact-page .contact-map-copy {
    padding: 4.5rem 1.25rem;
  }

  .contact-page .contact-map-frame,
  .contact-page .contact-map-frame iframe {
    min-height: 390px;
  }
}

@media (max-width: 380px) {
  .wellness-tile.pillar-slide {
    flex-basis: 89%;
    min-height: 460px;
  }

  .sanctuary-hero-copy .hero-actions {
    width: 100%;
  }

  .sanctuary-hero-copy .hero-primary-btn {
    width: 100%;
  }
}

/* Sanctuary desktop scroll motion. */
@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .sanctuary-page .site-header,
  .sanctuary-page .site-header .navbar,
  .sanctuary-page .site-header .brand-logo {
    transition: min-height .35s ease, background-color .35s ease, box-shadow .35s ease, width .35s ease;
  }

  .sanctuary-page .site-header.is-scrolled {
    background: rgba(244, 241, 229, .9);
    box-shadow: 0 12px 38px rgba(24, 31, 25, .11);
  }

  .sanctuary-page .site-header.is-scrolled .navbar {
    min-height: 76px;
  }

  .sanctuary-page .site-header.is-scrolled .brand-logo {
    width: 156px;
  }

  .sanctuary-page .hero-video > video {
    animation: none !important;
    transform: scale(1.12) translate3d(0, var(--hero-scroll-shift, 0), 0);
    transform-origin: center;
    will-change: transform;
  }

  .sanctuary-page .hero-video::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgba(8, 15, 10, .24));
    pointer-events: none;
  }

  .sanctuary-page .pillars-section,
  .sanctuary-page .spaces-section,
  .sanctuary-page .life-stage,
  .sanctuary-page .cta-section {
    position: relative;
  }

  .sanctuary-page .pillars-section::before,
  .sanctuary-page .spaces-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: var(--page-gutter);
    width: 1px;
    height: 72px;
    background: linear-gradient(to bottom, transparent, rgba(119, 101, 42, .55));
    transform-origin: top;
    animation: sanctuaryLinePulse 3s ease-in-out infinite;
  }

  .sanctuary-page .wellness-tile.pillar-slide {
    transition: transform .5s cubic-bezier(.2, .75, .25, 1), box-shadow .5s ease;
  }

  .sanctuary-page .wellness-tile.pillar-slide:hover {
    transform: translateY(-12px);
    box-shadow: 0 34px 70px rgba(24, 29, 21, .2);
  }

  .sanctuary-page .wellness-tile.pillar-slide h3 {
    transition: background-color .35s ease, border-color .35s ease, transform .35s ease;
  }

  .sanctuary-page .wellness-tile.pillar-slide:hover h3 {
    border-color: rgba(240, 211, 106, .72);
    background: rgba(17, 28, 19, .72);
    transform: translateY(3px);
  }

  .sanctuary-page .journey-line {
    transform: translate3d(var(--journey-scroll-shift, 0), 0, 0);
    transition: transform .12s linear;
    will-change: transform;
  }

  .sanctuary-page .life-stage::after {
    content: "";
    position: absolute;
    right: 5vw;
    bottom: -90px;
    width: 260px;
    height: 260px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    box-shadow: 0 0 0 48px rgba(255, 255, 255, .025), 0 0 0 96px rgba(255, 255, 255, .018);
    pointer-events: none;
  }

  .sanctuary-page .cta-image img {
    height: calc(100% + 80px);
    margin-top: -40px;
    transform: translate3d(0, var(--cta-scroll-shift, 0), 0) scale(1.045);
    will-change: transform;
  }

  .desktop-scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 120;
    width: 100%;
    height: 2px;
    background: #b49a3c;
    transform: scaleX(var(--scroll-progress, 0));
    transform-origin: left;
    pointer-events: none;
  }

  @keyframes sanctuaryLinePulse {
    0%, 100% { opacity: .35; transform: scaleY(.55); }
    50% { opacity: 1; transform: scaleY(1); }
  }
}

/* Villas editorial gallery, ownership privileges and FAQ. */
.villa-section-heading {
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
}

.villa-section-heading > div > span {
  display: block;
  margin-bottom: 1.15rem;
  color: #8a7429;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.villa-section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
}

.villa-section-heading > p {
  margin: 0 0 .35rem;
  color: #4a514b;
  font-size: 1.05rem !important;
  line-height: 1.65 !important;
}

.villa-gallery-section {
  padding: clamp(6rem, 9vw, 9rem) var(--page-gutter) !important;
  background: #29372d;
  color: #fff;
}

.villa-gallery-heading {
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.villa-gallery-heading > div > span {
  color: #dec96f;
}

.villa-gallery-heading h2 {
  color: #fff;
  font-size: clamp(3rem, 5vw, 5.3rem) !important;
  line-height: .98 !important;
}

.villa-gallery-heading > p {
  color: rgba(255, 255, 255, .7);
}

.villa-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(180px, 18vw, 310px);
  gap: clamp(.8rem, 1.4vw, 1.4rem);
}

.villa-gallery-grid img,
.villa-gallery-grid img:nth-child(4),
.villa-gallery-grid img:nth-child(6) {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: 4px;
  object-fit: cover;
}

.villa-gallery-grid img:nth-child(1) { grid-column: span 5; grid-row: span 2; }
.villa-gallery-grid img:nth-child(2) { grid-column: span 3; }
.villa-gallery-grid img:nth-child(3) { grid-column: span 4; }
.villa-gallery-grid img:nth-child(4) { grid-column: span 4; }
.villa-gallery-grid img:nth-child(5) { grid-column: span 3; }
.villa-gallery-grid img:nth-child(6) { grid-column: span 4; }
.villa-gallery-grid img:nth-child(7) { grid-column: span 3; }
.villa-gallery-grid img:nth-child(8) { grid-column: span 5; }
.villa-gallery-grid img:nth-child(9) { grid-column: span 4; }

.privileges-section {
  grid-template-columns: minmax(0, 1.65fr) minmax(340px, .85fr);
  min-height: 900px;
  background: #f3efe2;
}

.privileges-copy {
  padding: clamp(6rem, 8vw, 8.5rem) var(--page-gutter) !important;
}

.privileges-heading h2 {
  color: #293229;
  font-size: clamp(3rem, 4.7vw, 5rem) !important;
  line-height: 1 !important;
}

.privilege-grid {
  gap: 1rem;
  max-width: none;
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
}

.privilege-grid article {
  position: relative;
  min-height: 280px;
  padding: 1.8rem;
  overflow: hidden;
  border: 1px solid rgba(42, 53, 44, .13);
  background: rgba(255, 255, 255, .52);
}

.privilege-grid article::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -45px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(138, 116, 41, .16);
  border-radius: 50%;
  transition: transform .5s ease;
}

.privilege-grid article:hover::after {
  transform: scale(1.35);
}

.privilege-grid span {
  color: #927b2b;
  font-size: .78rem !important;
  font-weight: 800;
  letter-spacing: .12em;
}

.privilege-grid h3 {
  margin-top: 2.2rem;
  color: #293229;
  font-size: clamp(1.65rem, 2.3vw, 2.45rem) !important;
}

.privilege-grid p {
  color: #4a514b;
  font-size: .98rem !important;
  line-height: 1.6 !important;
}

.legacy-line {
  margin-top: 3rem;
  color: #293229;
  font-size: .82rem !important;
  font-weight: 800;
  letter-spacing: .12em;
}

.ownership-image {
  position: relative;
}

.ownership-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(11, 20, 13, .32));
  pointer-events: none;
}

.faq-section {
  grid-template-columns: minmax(0, 1.2fr) minmax(380px, .8fr);
  min-height: 850px;
  background: #f5f2e8;
}

.faq-copy {
  padding: clamp(6rem, 8vw, 8.5rem) var(--page-gutter) !important;
  background: transparent;
}

.faq-heading {
  display: block;
}

.faq-heading h2 {
  color: #293229;
  font-size: clamp(3rem, 4.7vw, 5rem) !important;
  line-height: 1 !important;
}

.faq-heading > p {
  max-width: 520px;
  margin-top: 1.75rem;
}

.villa-faq {
  max-width: 720px;
  margin-top: clamp(3rem, 5vw, 4.5rem);
  counter-reset: villaFaq;
}

.villa-faq .accordion-item {
  counter-increment: villaFaq;
  border-color: rgba(42, 53, 44, .18);
}

.villa-faq .accordion-button {
  position: relative;
  min-height: 78px;
  padding: 1.35rem 3.25rem 1.35rem 3.3rem;
  color: #293229;
  font-size: 1.12rem !important;
  font-weight: 600;
}

.villa-faq .accordion-button::before {
  content: counter(villaFaq, decimal-leading-zero);
  position: absolute;
  left: 0;
  color: #927b2b;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.villa-faq .accordion-button:not(.collapsed) {
  color: #7b6725;
}

.villa-faq .accordion-body {
  max-width: 620px;
  padding: 0 2rem 1.6rem 3.3rem;
  color: #4a514b;
  font-size: 1rem;
  line-height: 1.65;
}

.faq-image {
  position: relative;
}

.faq-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(9, 17, 11, .65));
  pointer-events: none;
}

.faq-image-caption {
  position: absolute;
  right: clamp(1.5rem, 3vw, 3rem);
  bottom: clamp(1.5rem, 3vw, 3rem);
  left: clamp(1.5rem, 3vw, 3rem);
  z-index: 2;
  color: #fff;
}

.faq-image-caption span {
  display: block;
  margin-bottom: .65rem;
  color: #e0cb73;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.faq-image-caption p {
  max-width: 340px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 1rem !important;
  line-height: 1.5 !important;
}

@media (max-width: 991.98px) {
  .villa-section-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .privileges-section,
  .faq-section {
    grid-template-columns: 1fr;
  }

  .ownership-image,
  .faq-image {
    min-height: 520px;
  }
}

@media (max-width: 767.98px) {
  .villa-section-heading h2 br {
    display: none;
  }

  .villa-section-heading > p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .villas-page .villa-gallery-section {
    padding: 4.75rem 1.25rem !important;
  }

  .villas-page .villa-gallery-heading {
    margin-bottom: 2.5rem;
  }

  .villas-page .villa-gallery-heading h2::after {
    content: "Swipe to explore \2192";
    display: block;
    margin-top: 1rem;
    color: #dec96f;
    font-family: var(--sans);
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .villas-page .privileges-heading,
  .villas-page .faq-heading {
    display: grid;
  }

  .villas-page .privilege-grid article {
    min-height: 0;
  }

  .villas-page .ownership-image,
  .villas-page .faq-image {
    min-height: 390px;
  }

  .villas-page .villa-faq .accordion-button {
    min-height: 68px;
    padding: 1rem 2.6rem 1rem 2.65rem;
    font-size: 1rem !important;
    line-height: 1.4;
  }

  .villas-page .villa-faq .accordion-body {
    padding: 0 .25rem 1.3rem 2.65rem;
  }

  .villas-page .faq-image-caption {
    right: 1.25rem;
    bottom: 1.5rem;
    left: 1.25rem;
  }
}

/* Villas desktop scroll motion. */
@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .villas-page .site-header,
  .villas-page .site-header .navbar,
  .villas-page .site-header .brand-logo {
    transition: min-height .35s ease, background-color .35s ease, box-shadow .35s ease, width .35s ease;
  }

  .villas-page .site-header.is-scrolled {
    background: rgba(244, 241, 229, .9);
    box-shadow: 0 12px 38px rgba(24, 31, 25, .11);
  }

  .villas-page .site-header.is-scrolled .navbar {
    min-height: 76px;
  }

  .villas-page .site-header.is-scrolled .brand-logo {
    width: 156px;
  }

  .villas-page .villa-hero > img {
    animation: none !important;
    transform: scale(1.12) translate3d(0, var(--villas-scroll-shift, 0), 0);
    transform-origin: center;
    will-change: transform;
  }

  .villas-page .villa-hero::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 2;
    height: 130px;
    background: linear-gradient(to bottom, transparent, rgba(8, 15, 10, .25));
    pointer-events: none;
  }

  .villas-page .villa-layouts,
  .villas-page .villa-gallery-section,
  .villas-page .ownership-model,
  .villas-page .partners-section,
  .villas-page .investment-section {
    position: relative;
  }

  .villas-page .villa-layouts::before,
  .villas-page .partners-section::before,
  .villas-page .investment-section::after {
    content: "";
    position: absolute;
    top: 0;
    left: var(--page-gutter);
    width: 1px;
    height: 72px;
    background: linear-gradient(to bottom, transparent, rgba(119, 101, 42, .55));
    transform-origin: top;
    animation: villasLinePulse 3s ease-in-out infinite;
  }

  .villas-page .plan-card,
  .villas-page .privilege-grid article,
  .villas-page .partner-grid article,
  .villas-page .ownership-steps article,
  .villas-page .investment-section article {
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), box-shadow .45s ease, background-color .45s ease;
  }

  .villas-page .plan-card:hover,
  .villas-page .privilege-grid article:hover,
  .villas-page .partner-grid article:hover,
  .villas-page .ownership-steps article:hover,
  .villas-page .investment-section article:hover {
    transform: translateY(-10px);
  }

  .villas-page .plan-card:hover {
    filter: drop-shadow(0 26px 30px rgba(34, 42, 35, .12));
  }

  .villas-page .villa-gallery-section {
    overflow: hidden;
  }

  .villas-page .villa-gallery-grid {
    transform: translate3d(0, var(--villas-scroll-shift, 0), 0);
    transition: transform .12s linear;
    will-change: transform;
  }

  .villas-page .villa-gallery-grid img {
    transition: transform .55s cubic-bezier(.2, .75, .25, 1), filter .55s ease;
  }

  .villas-page .villa-gallery-grid img:hover {
    z-index: 1;
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.025);
  }

  .villas-page .ownership-motif {
    transform: translate3d(0, var(--villas-scroll-shift, 0), 0) rotate(var(--villas-scroll-rotation, 0deg));
    will-change: transform;
  }

  .villas-page .ownership-image img,
  .villas-page .faq-image img {
    height: calc(100% + 76px);
    margin-top: -38px;
    transform: translate3d(0, var(--villas-scroll-shift, 0), 0) scale(1.04);
    will-change: transform;
  }

  .villas-page .second-home {
    background-attachment: fixed;
  }

  .villas-page .villas-scroll-progress {
    background: #9a8030;
  }

  @keyframes villasLinePulse {
    0%, 100% { opacity: .32; transform: scaleY(.52); }
    50% { opacity: 1; transform: scaleY(1); }
  }
}

/* Villas page: polished mobile experience. */
@media (max-width: 767.98px) {
  .villas-page {
    overflow-x: hidden;
  }

  .villas-page .villa-hero {
    height: auto;
    min-height: calc(100svh - 72px);
  }

  .villas-page .villa-hero > img {
    object-position: 58% center;
  }

  .villas-page .villa-hero-copy {
    padding-bottom: 4.5rem;
  }

  .villas-page .villa-hero-copy p {
    max-width: 32rem;
  }

  .villas-page .villa-layouts,
  .villas-page .villa-gallery-section,
  .villas-page .ownership-model,
  .villas-page .partners-section,
  .villas-page .second-home,
  .villas-page .investment-section,
  .villas-page .villa-final-cta {
    padding: 4.75rem 1.25rem !important;
  }

  .villas-page .villa-layouts h2,
  .villas-page .villa-gallery-section h2,
  .villas-page .ownership-model h2,
  .villas-page .partners-section h2,
  .villas-page .second-home h2,
  .villas-page .investment-section h2,
  .villas-page .faq-section h2,
  .villas-page .villa-final-cta h2 {
    font-size: clamp(2.4rem, 11vw, 3.5rem) !important;
    line-height: 1.02 !important;
    letter-spacing: -.045em;
  }

  .villas-page .villa-layouts .row,
  .villas-page .villa-layouts .row > * {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
  }

  .villas-page .villa-layouts h2 br,
  .villas-page .investment-section h2 br {
    display: none;
  }

  .villas-page .layout-copy {
    margin-top: 2.25rem;
    padding: 1.35rem;
    border: 1px solid rgba(47, 59, 48, .14);
    border-radius: 14px;
    background: rgba(255, 255, 255, .44);
  }

  .villas-page .layout-copy + .layout-rule {
    display: none;
  }

  .villas-page .layout-copy h3 {
    margin-bottom: .65rem;
    color: #786622;
  }

  .villas-page .plan-card {
    margin-top: 1.25rem;
    padding: 1rem;
    border: 1px solid rgba(47, 59, 48, .12);
    border-radius: 16px;
    background: #fffdf6;
    box-shadow: 0 18px 46px rgba(38, 48, 39, .08);
  }

  .villas-page .plan-card:first-child {
    margin-top: 2.5rem;
  }

  .villas-page .plan-card h3 {
    margin: .35rem .35rem 1rem;
  }

  .villas-page .plan-card img {
    height: auto;
    max-height: 520px;
    border-radius: 10px;
    object-fit: contain;
  }

  .villas-page .villa-gallery-section {
    overflow: hidden;
    background: #303e31;
    color: #fff;
  }

  .villas-page .villa-gallery-section h2 {
    margin-bottom: 1.75rem;
    color: #fff;
  }

  .villas-page .villa-gallery-section h2::after {
    content: "Swipe to explore →";
    display: block;
    margin-top: 1rem;
    color: #d9c872;
    font-family: var(--sans);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .villas-page .villa-gallery-grid {
    display: flex;
    gap: .9rem;
    margin-right: -1.25rem;
    padding-right: 1.25rem;
    padding-bottom: .7rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .villas-page .villa-gallery-grid::-webkit-scrollbar {
    display: none;
  }

  .villas-page .villa-gallery-grid img,
  .villas-page .villa-gallery-grid img:nth-child(4),
  .villas-page .villa-gallery-grid img:nth-child(6) {
    flex: 0 0 82%;
    aspect-ratio: 4 / 5;
    border-radius: 14px;
    scroll-snap-align: start;
  }

  .villas-page .ownership-model {
    background: #eee9d9;
  }

  .villas-page .ownership-model .subtitle {
    margin-top: .7rem;
    color: #796923;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .villas-page .ownership-steps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 2.25rem;
  }

  .villas-page .ownership-steps article {
    min-height: 180px;
    padding: 1.2rem;
    border: 1px solid rgba(47, 59, 48, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .55);
  }

  .villas-page .ownership-steps article::before {
    display: inline-grid;
    width: 28px;
    height: 28px;
    margin-bottom: 1.15rem;
    place-items: center;
    border: 1px solid #8a762d;
    border-radius: 50%;
    color: #796923;
    font-size: .67rem;
  }

  .villas-page .ownership-steps article:nth-child(1)::before { content: "01"; }
  .villas-page .ownership-steps article:nth-child(2)::before { content: "02"; }
  .villas-page .ownership-steps article:nth-child(3)::before { content: "03"; }
  .villas-page .ownership-steps article:nth-child(4)::before { content: "04"; }

  .villas-page .ownership-steps h3 {
    margin-bottom: .55rem;
    font-size: 1.25rem !important;
  }

  .villas-page .ownership-steps p {
    font-size: .88rem !important;
    line-height: 1.45 !important;
  }

  .villas-page .ownership-motif {
    width: 56px;
    margin-top: 1.5rem;
    opacity: .45;
  }

  .villas-page .privileges-copy,
  .villas-page .faq-copy {
    padding: 4.75rem 1.25rem !important;
  }

  .villas-page .privilege-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 2.5rem;
  }

  .villas-page .privilege-grid article {
    min-height: 225px;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
  }

  .villas-page .privilege-grid span {
    font-size: .74rem;
  }

  .villas-page .privilege-grid h3 {
    margin-top: 1.5rem;
    font-size: 1.25rem !important;
  }

  .villas-page .privilege-grid p {
    font-size: .86rem !important;
    line-height: 1.45 !important;
  }

  .villas-page .legacy-line,
  .villas-page .team-line {
    margin-top: 2.5rem;
  }

  .villas-page .ownership-image,
  .villas-page .faq-image {
    min-height: 350px;
  }

  .villas-page .partner-grid {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 2.5rem;
  }

  .villas-page .partner-grid article {
    min-width: 0;
    padding: 1.15rem;
    border: 1px solid rgba(47, 59, 48, .12);
    border-radius: 14px;
    background: rgba(255, 255, 255, .48);
  }

  .villas-page .partner-grid h3 {
    min-height: 58px;
    margin-bottom: 1rem;
    font-size: .9rem !important;
    line-height: 1.25 !important;
  }

  .villas-page .partner-logo {
    min-height: 90px;
    padding: .8rem;
  }

  .villas-page .partner-logo img {
    max-width: 110px;
    max-height: 54px;
  }

  .villas-page .second-home {
    text-align: left !important;
  }

  .villas-page .second-home > .container {
    padding: 0;
  }

  .villas-page .second-home > .container > p {
    margin-right: 0;
    margin-left: 0;
  }

  .villas-page .comparison-wrap {
    position: relative;
    margin-top: 2.25rem;
    border: 1px solid rgba(47, 59, 48, .12);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(38, 48, 39, .07);
  }

  .villas-page .comparison-wrap::before {
    content: "Swipe table →";
    position: sticky;
    left: 0;
    display: block;
    padding: .75rem 1rem;
    background: #303e31;
    color: #fff;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .villas-page .comparison-table {
    min-width: 690px;
    margin: 0;
  }

  .villas-page .comparison-table th,
  .villas-page .comparison-table td {
    padding: 1rem;
    font-size: .82rem;
  }

  .villas-page .investment-section {
    overflow: hidden;
  }

  .villas-page .investment-top,
  .villas-page .investment-bottom {
    display: grid;
    grid-template-columns: 1fr;
    gap: .8rem;
    padding: 0;
    border: 0;
  }

  .villas-page .investment-top h2 {
    margin-bottom: 1.5rem;
  }

  .villas-page .investment-bottom {
    margin-top: .8rem;
  }

  .villas-page .investment-section article {
    position: relative;
    min-height: 170px;
    padding: 1.35rem 1.35rem 1.35rem 4.2rem;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 14px;
    background: rgba(255, 255, 255, .055);
  }

  .villas-page .investment-section article > span {
    position: absolute;
    top: 1.5rem;
    left: 1.25rem;
  }

  .villas-page .investment-section h3 {
    margin: 0 0 .7rem;
    font-size: 1.3rem !important;
  }

  .villas-page .investment-section h3 br {
    display: none;
  }

  .villas-page .investment-section p {
    font-size: .9rem !important;
    line-height: 1.5 !important;
  }

  .villas-page .investment-mark {
    right: -1rem;
    bottom: -1rem;
    width: 76px;
    opacity: .12;
  }

  .villas-page .villa-faq {
    margin-top: 2rem;
  }

  .villas-page .villa-faq .accordion-item {
    border-color: rgba(47, 59, 48, .16);
  }

  .villas-page .villa-faq .accordion-button {
    min-height: 64px;
    padding: 1rem .15rem;
    font-size: 1rem;
    line-height: 1.35;
  }

  .villas-page .villa-faq .accordion-body {
    padding: 0 .15rem 1.25rem;
    font-size: .9rem;
    line-height: 1.55;
  }

  .villas-page .villa-final-cta {
    min-height: 520px;
    display: grid;
    place-content: center;
  }

  .villas-page .villa-final-cta p {
    margin: 1.25rem auto 2rem;
    font-size: 1rem !important;
  }

  .villas-page .villa-final-cta .discovery-btn {
    width: 100%;
    min-height: 56px;
  }
}

@media (max-width: 380px) {
  .villas-page .ownership-steps,
  .villas-page .privilege-grid,
  .villas-page .partner-grid {
    grid-template-columns: 1fr;
  }

  .villas-page .ownership-steps article,
  .villas-page .privilege-grid article {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .animations-ready .reveal,
  .animations-ready .image-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .distance-track {
    animation: none;
  }

}

/* Professional editorial hero content. */
.web-hero,
.hero-video,
.villa-hero,
.contact-hero {
  min-height: clamp(680px, 88vh, 900px);
  place-items: center start;
}

.web-hero,
.villa-hero,
.contact-hero {
  display: grid;
  align-items: center;
}

.hero-video {
  justify-content: flex-start !important;
}

.villa-hero > img {
  position: absolute;
  inset: 0;
}

.web-hero::after,
.hero-video::after,
.villa-hero::after,
.contact-hero::after {
  background: linear-gradient(90deg, rgba(8, 15, 10, .76) 0%, rgba(8, 15, 10, .54) 42%, rgba(8, 15, 10, .12) 74%, rgba(8, 15, 10, .16) 100%);
}

.web-hero-content,
.sanctuary-hero-copy,
.villa-hero-copy,
.contact-hero-copy {
  position: relative;
  inset: auto;
  width: min(760px, calc(100% - 2 * var(--page-gutter)));
  max-width: none;
  margin-left: var(--page-gutter);
  padding: 6rem 0 3rem;
  text-align: left !important;
}

.villa-hero-copy {
  display: block;
}

.web-hero-content::before,
.sanctuary-hero-copy::before,
.villa-hero-copy::before,
.contact-hero-copy::before {
  display: none;
}

.hero-kicker {
  gap: .85rem;
  margin-bottom: 1.65rem !important;
  color: #e7cd70 !important;
  font-size: .74rem !important;
  letter-spacing: .18em;
}

.hero-kicker::after {
  display: none;
}

.hero-kicker::before {
  width: 42px;
}

.web-hero h1,
.sanctuary-hero-copy h1,
.villa-hero-copy h1,
.contact-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: clamp(3.6rem, 6.2vw, 6.5rem) !important;
  line-height: .98 !important;
  letter-spacing: -.055em;
  text-shadow: 0 16px 50px rgba(0, 0, 0, .25);
}

.web-hero p,
.sanctuary-hero-copy p,
.villa-hero-copy p,
.contact-hero p {
  max-width: 610px;
  margin: 1.8rem 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  letter-spacing: 0;
  text-shadow: none;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 2.5rem;
}

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 1rem 1.65rem;
  border: 1px solid #e6cf78;
  border-radius: 2px;
  background: #e6cf78;
  color: #1d261f;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: background .3s ease, color .3s ease, transform .3s ease;
}

.hero-primary-btn:hover,
.hero-primary-btn:focus {
  border-color: #fff;
  background: #fff;
  color: #1d261f;
  transform: translateY(-2px);
}

.hero-text-link {
  position: relative;
  padding: .65rem 0;
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .35rem;
  left: 0;
  height: 1px;
  background: rgba(255, 255, 255, .48);
  transform-origin: left;
  transition: transform .3s ease;
}

.hero-text-link:hover,
.hero-text-link:focus {
  color: #e7cd70;
}

.hero-text-link:hover::after,
.hero-text-link:focus::after {
  transform: scaleX(.45);
}

.web-hero-meta {
  right: auto;
  bottom: 2.2rem;
  left: var(--page-gutter);
  display: flex;
  gap: 0;
  width: auto;
  color: rgba(255, 255, 255, .7);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-align: left;
  text-transform: uppercase;
}

.web-hero-meta span {
  padding: 0 1rem;
  border-left: 1px solid rgba(255, 255, 255, .32);
}

.web-hero-meta span:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-scroll-cue {
  right: var(--page-gutter);
}

.contact-hero-mark {
  position: absolute;
  top: 4.5rem;
  right: 0;
  width: clamp(62px, 7vw, 96px);
  margin: 0;
  opacity: .55;
}

.story-hero-copy {
  position: relative;
  z-index: 1;
  padding-right: 5vw;
}

.story-hero h1 {
  font-size: clamp(3.5rem, 5.6vw, 6rem) !important;
}

.story-hero p {
  font-weight: 400;
  line-height: 1.5;
}

.story-hero-btn {
  margin-top: 0;
  border-radius: 2px;
  background: #303e31;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .09em;
}

.story-text-link {
  color: #303e31;
}

.story-text-link::after {
  background: rgba(48, 62, 49, .5);
}

@media (max-width: 767.98px) {
  .web-hero,
  .hero-video,
  .villa-hero,
  .contact-hero {
    min-height: 680px;
    align-items: end;
  }

  .web-hero::after,
  .hero-video::after,
  .villa-hero::after,
  .contact-hero::after {
    background: linear-gradient(180deg, rgba(8, 15, 10, .18) 0%, rgba(8, 15, 10, .76) 58%, rgba(8, 15, 10, .9) 100%);
  }

  .web-hero-content,
  .sanctuary-hero-copy,
  .villa-hero-copy,
  .contact-hero-copy {
    width: calc(100% - 2.5rem);
    margin: 0 1.25rem;
    padding: 7rem 0 4rem;
  }

  .web-hero h1,
  .sanctuary-hero-copy h1,
  .villa-hero-copy h1,
  .contact-hero h1 {
    font-size: clamp(2.8rem, 13vw, 4.25rem) !important;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: .9rem;
    margin-top: 2rem;
  }

  .hero-primary-btn {
    width: auto;
    max-width: none;
  }

  .contact-hero-mark {
    top: 5rem;
    right: 0;
  }
}

/* Sanctuary page colour flow — one continuous warm, natural palette. */
.sanctuary-page {
  --sanctuary-ivory: #f3efe2;
  --sanctuary-sand: #e9e1d0;
  --sanctuary-sand-deep: #e4dac5;
  --sanctuary-forest: #29382e;
  --sanctuary-forest-deep: #223027;
}

.sanctuary-page .pillars-section {
  background: linear-gradient(180deg, #eee9dc 0%, var(--sanctuary-ivory) 18%, #eee7d7 100%);
}

.sanctuary-page .life-stage {
  background: linear-gradient(180deg, #eee7d7 0%, var(--sanctuary-sand) 20%, var(--sanctuary-sand-deep) 100%);
}

.sanctuary-page .spaces-section {
  background: linear-gradient(180deg, var(--sanctuary-forest-deep) 0%, var(--sanctuary-forest) 16%, #26352b 76%, #223027 100%);
}

.sanctuary-page .cta-section {
  background: linear-gradient(180deg, #eee9dc 0%, var(--sanctuary-ivory) 34%, #ece7d9 100%);
}

.sanctuary-page .web-footer {
  border-top-color: rgba(48, 72, 50, .1);
  background: #ece7d9;
}

@media (max-width: 575.98px) {
  .sanctuary-page .pillars-section {
    background: linear-gradient(180deg, #eee9dc 0%, var(--sanctuary-ivory) 12%, #eee7d7 100%);
  }

  .sanctuary-page .life-stage {
    background: linear-gradient(180deg, #eee7d7 0%, var(--sanctuary-sand) 14%, var(--sanctuary-sand-deep) 100%);
  }

  .sanctuary-page .spaces-section {
    background: linear-gradient(180deg, var(--sanctuary-forest-deep), var(--sanctuary-forest) 12%, #223027 100%);
  }
}

/* Unified global navigation. */
.site-header,
.web-header,
.villas-page .site-header,
.contact-page .site-header,
.story-page .site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(42, 48, 39, .1);
  background: rgba(244, 241, 229, .96);
  box-shadow: 0 8px 28px rgba(24, 31, 25, .05);
  backdrop-filter: blur(16px);
}

.site-header .navbar,
.web-header .navbar,
.villas-page .navbar,
.contact-page .navbar,
.story-page .navbar {
  min-height: 92px;
  padding: 0;
}

.site-header .navbar > .container-fluid {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding-right: clamp(1.5rem, 4vw, 4.5rem) !important;
  padding-left: clamp(1.5rem, 4vw, 4.5rem) !important;
}

.site-header .navbar-brand {
  margin: 0;
  padding: .7rem 0;
}

.site-header .brand-logo,
.web-header .brand-logo {
  width: clamp(154px, 12vw, 190px);
  max-height: 50px;
  filter: none;
  transition: transform .3s ease, opacity .3s ease;
}

.site-header .navbar-brand:hover .brand-logo,
.site-header .navbar-brand:focus .brand-logo {
  transform: translateY(-1px);
  opacity: .82;
}

.site-header .navbar-collapse {
  align-items: center;
}

.site-header .navbar-nav {
  gap: clamp(.4rem, 1.25vw, 1.5rem);
}

.site-header .nav-link,
.web-header .nav-link {
  position: relative;
  padding: 2.15rem .55rem 2rem;
  color: #293229;
  font-size: .76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .095em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.site-header .nav-link::after {
  content: "";
  position: absolute;
  right: .55rem;
  bottom: 1.55rem;
  left: .55rem;
  height: 1px;
  background: #8b762e;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.site-header .nav-link:hover,
.site-header .nav-link:focus,
.site-header .nav-link.active,
.web-header .nav-link:hover,
.web-header .nav-link:focus,
.web-header .nav-link.active {
  color: #74611f;
}

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

.site-header .nav-divider,
.web-header .nav-divider {
  height: 28px;
  margin: 0 1.5rem 0 .7rem;
  background: rgba(41, 50, 41, .2);
}

.site-header .enquire-btn {
  min-width: 132px;
  padding: .8rem 1.35rem;
  border: 1px solid #334236;
  border-radius: 2px;
  background: #334236;
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .09em;
  box-shadow: none;
}

.site-header .enquire-btn:hover,
.site-header .enquire-btn:focus {
  border-color: #1d291f;
  background: #1d291f;
  color: #fff;
  transform: translateY(-2px);
}

.site-header .navbar-toggler {
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(41, 50, 41, .24);
  border-radius: 50%;
  box-shadow: none;
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(139, 118, 46, .16);
}

.site-header .navbar-toggler-icon {
  position: relative;
  width: 18px;
  height: 12px;
  background: none;
}

.site-header .navbar-toggler-icon::before,
.site-header .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: #293229;
  transition: top .25s ease, transform .25s ease;
}

.site-header .navbar-toggler-icon::before {
  top: 2px;
  box-shadow: 0 4px 0 #293229;
}

.site-header .navbar-toggler-icon::after {
  top: 10px;
}

.site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
  top: 6px;
  box-shadow: none;
  transform: rotate(45deg);
}

.site-header .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
  top: 6px;
  transform: rotate(-45deg);
}

@media (max-width: 991.98px) {
  .site-header .navbar,
  .web-header .navbar,
  .villas-page .navbar,
  .contact-page .navbar,
  .story-page .navbar {
    min-height: 78px;
  }

  .site-header .navbar > .container-fluid {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .site-header .brand-logo,
  .web-header .brand-logo {
    width: 148px;
    max-height: 44px;
  }

  .site-header .navbar-collapse {
    margin: 0 -1.25rem;
    padding: 1rem 1.25rem 1.4rem;
    border-top: 1px solid rgba(41, 50, 41, .1);
    background: #f4f1e5;
  }

  .site-header .navbar-nav {
    gap: 0;
    margin: 0 !important;
    align-items: stretch !important;
  }

  .site-header .nav-item {
    border-bottom: 1px solid rgba(41, 50, 41, .1);
  }

  .site-header .nav-link,
  .web-header .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: .9rem .15rem;
    color: #293229;
    font-size: .82rem;
  }

  .site-header .nav-link::before {
    content: "↗";
    order: 2;
    color: #8b762e;
    font-size: .9rem;
    opacity: .7;
  }

  .site-header .nav-link::after {
    display: none;
  }

  .site-header .nav-link.active {
    color: #806c28;
  }

  .site-header .nav-link.active::before {
    content: "•";
    font-size: 1.15rem;
  }

  .site-header .enquire-btn {
    display: flex;
    width: 100%;
    min-height: 52px;
    margin-top: 1.25rem;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .site-header .navbar,
  .web-header .navbar,
  .villas-page .navbar,
  .contact-page .navbar,
  .story-page .navbar {
    min-height: 72px;
  }

  .site-header .brand-logo,
  .web-header .brand-logo {
    width: 136px;
    max-height: 40px;
  }

  .site-header .navbar-toggler {
    width: 42px;
    height: 42px;
  }
}

/* Villas mobile readability fixes. Keep after all shared responsive rules. */
@media (max-width: 767.98px) {
  .villas-page .villa-layouts p,
  .villas-page .ownership-model p,
  .villas-page .privileges-section p,
  .villas-page .partners-section p,
  .villas-page .second-home p,
  .villas-page .investment-section p,
  .villas-page .faq-section p,
  .villas-page .villa-final-cta p {
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .villas-page .ownership-model,
  .villas-page .ownership-model h2,
  .villas-page .ownership-steps h3,
  .villas-page .ownership-steps p {
    color: #263229;
  }

  .villas-page .ownership-model .subtitle {
    color: #6f5e1f;
  }

  .villas-page .ownership-steps,
  .villas-page .privilege-grid,
  .villas-page .partner-grid {
    gap: 1rem !important;
  }

  .villas-page .ownership-steps article {
    background: #faf8ef;
    box-shadow: 0 10px 28px rgba(38, 48, 39, .06);
  }

  .villas-page .privilege-grid article {
    border-color: rgba(47, 59, 48, .14);
    background: #faf8ef;
    box-shadow: 0 12px 32px rgba(38, 48, 39, .06);
  }

  .villas-page .privilege-grid span {
    color: #7b6822;
    font-size: .78rem !important;
    font-weight: 800;
    letter-spacing: .1em;
  }

  .villas-page .privilege-grid h3 {
    color: #303a31;
  }

  .villas-page .privilege-grid p {
    color: #3d463e;
  }

  .villas-page .legacy-line,
  .villas-page .team-line {
    color: #303a31;
    font-size: .9rem !important;
    line-height: 1.5 !important;
    letter-spacing: .04em;
  }

  .villas-page .partner-grid h3 {
    min-height: 0;
    color: #263229;
    font-size: 1rem !important;
    line-height: 1.4 !important;
  }

  .villas-page .second-home p {
    color: rgba(255, 255, 255, .88);
  }

  .villas-page .comparison-wrap::before {
    content: "Swipe table \2192";
  }

  .villas-page .comparison-table th,
  .villas-page .comparison-table td {
    font-size: .9rem !important;
    line-height: 1.45 !important;
  }

  .villas-page .investment-section article {
    border-color: rgba(47, 59, 48, .14);
    background: #faf8ef;
    box-shadow: 0 12px 30px rgba(38, 48, 39, .055);
  }

  .villas-page .investment-section article > span {
    color: #7b6822;
    font-size: 1rem !important;
    font-weight: 800;
  }

  .villas-page .investment-section h3 {
    color: #303a31;
    line-height: 1.25 !important;
  }

  .villas-page .investment-section p {
    color: #3d463e;
  }

  .villas-page .villa-faq .accordion-button {
    color: #293329;
    font-size: 1.05rem !important;
    font-weight: 600;
  }

  .villas-page .villa-faq .accordion-body {
    color: #424a43;
    font-size: 1rem !important;
    line-height: 1.6 !important;
  }

  .villas-page .villa-gallery-section h2::after {
    content: "Swipe to explore \2192";
  }
}

@media (max-width: 575.98px) {
  .villas-page .ownership-steps,
  .villas-page .privilege-grid,
  .villas-page .partner-grid {
    grid-template-columns: 1fr;
  }

  .villas-page .ownership-steps article,
  .villas-page .privilege-grid article {
    min-height: auto;
  }

  .villas-page .ownership-steps article,
  .villas-page .privilege-grid article,
  .villas-page .partner-grid article {
    padding: 1.35rem;
  }

  .villas-page .investment-section article {
    min-height: 0;
    padding: 1.4rem;
  }

  .villas-page .investment-section article > span {
    position: static;
    margin-bottom: .8rem;
  }

  .villas-page .villa-gallery-grid img,
  .villas-page .villa-gallery-grid img:nth-child(4),
  .villas-page .villa-gallery-grid img:nth-child(6) {
    flex-basis: 88%;
  }
}

/* Shared typography scale for all pages. */
h1 {
  font-size: clamp(2.75rem, 5vw, 4rem) !important;
  font-weight: 400 !important;
  line-height: 1.08 !important;
}

h2 {
  font-size: clamp(2.25rem, 4vw, 3rem) !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 1.75rem) !important;
  font-weight: 500 !important;
  line-height: 1.14 !important;
}

h4,
h5,
h6 {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem) !important;
  font-weight: 600 !important;
  line-height: 1.18 !important;
}

p {
  font-size: 1.125rem !important;
  font-weight: 400 !important;
  line-height: 1.45 !important;
}

/* Responsive spacing system for consistent pages. */
:root {
  --page-gutter: clamp(1.5rem, 6.5vw, 7rem);
  --section-y: clamp(5.5rem, 8vw, 8rem);
  --section-y-sm: clamp(4.5rem, 7vw, 6rem);
}

.difference-section,
.vengurla-section,
.life-swaragya,
.planning-cta,
.investor-section,
.villa-layouts,
.ownership-model,
.partners-section,
.second-home,
.investment-section,
.villa-final-cta,
.contact-details,
.contact-form-section,
.contact-map-section,
.story-intro,
.story-pillars,
.story-cta,
.web-final-cta {
  padding: var(--section-y) var(--page-gutter) !important;
}

.pillars-section,
.spaces-section {
  padding: var(--section-y) 0 !important;
}

.pillars-section .container-fluid,
.spaces-section .container-fluid {
  padding-left: var(--page-gutter) !important;
}

.pillar-track,
.pillar-slider-controls {
  padding-right: var(--page-gutter) !important;
}

.gallery-section {
  padding: 0 var(--page-gutter) var(--section-y) !important;
}

.web-footer {
  padding: var(--section-y-sm) var(--page-gutter) !important;
}

.cta-copy,
.privileges-copy,
.faq-copy,
.story-hero-copy,
.story-logo-panel {
  padding: var(--section-y-sm) var(--page-gutter) !important;
}

.privileges-section,
.faq-section,
.cta-section,
.story-hero,
.contact-details .container-fluid,
.contact-form-section .container-fluid,
.story-intro .container-fluid,
.planning-cta,
.contact-map-section,
.story-cta,
.investor-section {
  gap: clamp(2rem, 5vw, 4.5rem) !important;
}

@media (max-width: 991.98px) {
  :root {
    --page-gutter: clamp(1.25rem, 5.5vw, 3.5rem);
    --section-y: clamp(4.5rem, 8vw, 6rem);
    --section-y-sm: clamp(4rem, 7vw, 5rem);
  }

  .partner-grid,
  .investment-top,
  .investment-bottom,
  .ownership-steps,
  .privilege-grid,
  .contact-grid {
    gap: clamp(1.75rem, 4vw, 3rem) !important;
  }

}

@media (max-width: 575.98px) {
  :root {
    --page-gutter: 1.25rem;
    --section-y: 4.5rem;
    --section-y-sm: 4rem;
  }

  .pillar-slider {
    margin-top: 3rem !important;
  }

  .web-footer {
    gap: 2.5rem !important;
  }

  .villa-gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* Final spacing and responsive QA overrides. */
main > section[id],
main > section [id] {
  scroll-margin-top: 108px;
}

/* Homepage background colour flow. */
/* Recreated wellness pillars slider. */
.sanctuary-page {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

.sanctuary-page main,
.sanctuary-page main > section,
.sanctuary-page .container,
.sanctuary-page .container-fluid,
.sanctuary-page .row,
.sanctuary-page .row > *,
.sanctuary-page .pillar-slider,
.sanctuary-page .pillar-track,
.sanctuary-page .journey-line,
.sanctuary-page .cta-section,
.sanctuary-page .cta-copy,
.sanctuary-page .cta-image {
  min-width: 0;
  max-width: 100%;
}

.sanctuary-page .hero-video,
.sanctuary-page .pillars-section,
.sanctuary-page .life-stage,
.sanctuary-page .spaces-section,
.sanctuary-page .cta-section {
  overflow-x: hidden;
  overflow-x: clip;
}

.sanctuary-page .hero-video > video,
.sanctuary-page .cta-image img {
  display: block;
  max-width: none;
}

.sanctuary-page .pillar-track {
  overscroll-behavior-inline: contain;
}

.sanctuary-page .wellness-tile.pillar-slide {
  min-width: 0;
  max-width: calc(100vw - var(--page-gutter));
}

.sanctuary-page .life-stage .journey-line {
  overflow: visible;
}

@media (max-width: 991.98px) {
  .sanctuary-page .life-stage .journey-line {
    overflow: hidden;
  }
}

.sanctuary-page .pillars-section {
  position: relative;
  background: #f3efe2;
}

.sanctuary-page .pillars-section::after {
  content: "";
  position: absolute;
  top: -190px;
  right: -160px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(43, 56, 46, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(43, 56, 46, .025), 0 0 0 130px rgba(43, 56, 46, .015);
  pointer-events: none;
}

.sanctuary-page .pillars-section .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1600px;
}

.pillars-heading > span {
  display: block;
  margin-bottom: 1.2rem;
  color: #897328;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sanctuary-page .pillars-heading h2 {
  max-width: 760px;
  margin: 0;
  color: #293329;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem) !important;
  font-weight: 400;
  line-height: .98 !important;
  letter-spacing: -.05em;
}

.sanctuary-page .pillars-section .pillar-slider {
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
}

.sanctuary-page .pillars-section .wellness-tile.pillar-slide {
  flex-basis: min(390px, 76vw);
  min-height: 590px;
  border-radius: 4px;
  background: #29372d;
  box-shadow: 0 24px 54px rgba(36, 46, 38, .13);
}

.sanctuary-page .pillars-section .wellness-tile.pillar-slide::before {
  background: linear-gradient(180deg, rgba(7, 15, 10, .38) 0%, rgba(7, 15, 10, .06) 42%, rgba(7, 15, 10, .78) 100%);
}

.sanctuary-page .pillars-section .pillar-number {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  color: #fff;
  font-size: .67rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.sanctuary-page .pillars-section .wellness-tile.pillar-slide h3 {
  inset: auto 1.5rem 1.6rem;
  width: auto;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
  letter-spacing: -.03em;
  text-transform: none;
  backdrop-filter: none;
}

.sanctuary-page .pillars-section .pillar-slider-controls {
  margin-top: 1.5rem;
}

.sanctuary-page .pillars-section .pillar-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(43, 56, 46, .18);
  background: rgba(255, 255, 255, .48);
  color: #293329;
}

.sanctuary-page .pillars-section .pillar-arrow:hover,
.sanctuary-page .pillars-section .pillar-arrow:focus {
  border-color: #29382e;
  background: #29382e;
  color: #fff;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .sanctuary-page .pillars-section .wellness-tile.pillar-slide:hover {
    box-shadow: 0 34px 70px rgba(36, 46, 38, .2);
  }

  .sanctuary-page .pillars-section .wellness-tile.pillar-slide:hover h3 {
    background: transparent;
    transform: translateY(-4px);
  }
}

@media (max-width: 575.98px) {
  .sanctuary-page .pillars-heading h2 br {
    display: none;
  }

  .sanctuary-page .pillars-section .wellness-tile.pillar-slide {
    flex-basis: 86%;
    min-height: 500px;
    border-radius: 14px;
  }

  .sanctuary-page .pillars-section .pillar-slider-controls {
    display: none;
  }
}

/* Recreated every-stage wellness journey. */
.sanctuary-page .life-stage {
  position: relative;
  padding: var(--section-y) var(--page-gutter) !important;
  overflow: hidden;
  background: #e9e1d0;
  color: #293329;
}

.sanctuary-page .life-stage > .container-fluid {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

.sanctuary-page .life-stage .row {
  display: block;
  margin: 0;
}

.sanctuary-page .life-stage .row > * {
  width: 100%;
  padding: 0;
}

.life-stage-heading > span {
  display: block;
  margin-bottom: 1.2rem;
  color: #897328;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sanctuary-page .life-stage-heading h2 {
  max-width: 820px;
  margin: 0;
  color: #293329;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem) !important;
  font-weight: 400;
  line-height: .98 !important;
  letter-spacing: -.05em;
}

.sanctuary-page .life-stage .journey-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  max-width: none;
  min-height: 0;
  margin: clamp(3.5rem, 6vw, 5.5rem) 0 0;
  overflow: visible;
  color: #293329;
  transform: none !important;
}

.sanctuary-page .life-stage .journey-line svg {
  display: none;
}

.sanctuary-page .life-stage .stage {
  position: relative;
  top: auto;
  left: auto;
  display: flex;
  width: 100%;
  max-width: none;
  min-height: 190px;
  padding: 1.5rem;
  align-items: flex-end;
  border: 1px solid rgba(43, 56, 46, .15);
  background: rgba(255, 255, 255, .42);
  color: #303b32;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.7vw, 1.7rem) !important;
  font-weight: 400;
  line-height: 1.15 !important;
  text-align: left;
  transform: none;
  white-space: normal;
}

.sanctuary-page .life-stage .stage::before {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #8a7428;
  border-radius: 50%;
  color: #7b6724;
  font-family: var(--sans);
  font-size: .66rem;
  font-weight: 800;
}

.sanctuary-page .life-stage .stage-1::before { content: "01"; }
.sanctuary-page .life-stage .stage-2::before { content: "02"; }
.sanctuary-page .life-stage .stage-3::before { content: "03"; }
.sanctuary-page .life-stage .stage-4::before { content: "04"; }
.sanctuary-page .life-stage .stage-5::before { content: "05"; }

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .sanctuary-page .life-stage .stage {
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), background-color .45s ease, box-shadow .45s ease;
  }

  .sanctuary-page .life-stage .stage:hover {
    z-index: 1;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 24px 50px rgba(35, 45, 37, .1);
    transform: translateY(-8px);
  }
}

@media (max-width: 991.98px) {
  .sanctuary-page .life-stage .journey-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sanctuary-page .life-stage .stage-5 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .sanctuary-page .life-stage {
    padding: 4.75rem 1.25rem !important;
  }

  .sanctuary-page .life-stage-heading h2 br {
    display: none;
  }

  .sanctuary-page .life-stage .journey-line {
    grid-template-columns: 1fr;
    gap: .8rem !important;
    margin-top: 2.75rem;
  }

  .sanctuary-page .life-stage .stage,
  .sanctuary-page .life-stage .stage-5 {
    grid-column: auto;
    min-height: 150px;
  }
}

/* Sanctuary spaces uses the same system as wellness pillars. */
.sanctuary-page .spaces-section {
  position: relative;
  background: #29382e;
  color: #fff;
}

.sanctuary-page .spaces-section .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1600px;
}

.spaces-heading > span {
  display: block;
  margin-bottom: 1.2rem;
  color: #dec96e;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.sanctuary-page .spaces-heading h2 {
  max-width: 800px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3.2rem, 5vw, 5.5rem) !important;
  font-weight: 400;
  line-height: .98 !important;
  letter-spacing: -.05em;
}

.sanctuary-page .spaces-section .pillar-slider {
  margin-top: clamp(3.5rem, 6vw, 5.5rem);
}

.sanctuary-page .spaces-section .wellness-tile.pillar-slide {
  flex-basis: min(390px, 76vw);
  min-height: 590px;
  border-radius: 4px;
  background: #1f2c24;
  box-shadow: 0 24px 54px rgba(7, 15, 10, .22);
}

.sanctuary-page .spaces-section .wellness-tile.pillar-slide::before {
  background: linear-gradient(180deg, rgba(7, 15, 10, .38) 0%, rgba(7, 15, 10, .06) 42%, rgba(7, 15, 10, .8) 100%);
}

.sanctuary-page .spaces-section .pillar-number {
  position: absolute;
  top: 1.3rem;
  left: 1.3rem;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 50%;
  color: #fff;
  font-size: .67rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.sanctuary-page .spaces-section .wellness-tile.pillar-slide h3 {
  inset: auto 1.5rem 1.6rem;
  width: auto;
  max-width: none;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.4vw, 2.5rem) !important;
  font-weight: 400 !important;
  line-height: 1.04 !important;
  letter-spacing: -.03em;
  text-transform: none;
  backdrop-filter: none;
}

.sanctuary-page .spaces-section .pillar-slider-controls {
  margin-top: 1.5rem;
}

.sanctuary-page .spaces-section .pillar-arrow {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
  color: #fff;
}

.sanctuary-page .spaces-section .pillar-arrow:hover,
.sanctuary-page .spaces-section .pillar-arrow:focus {
  border-color: #dec96e;
  background: #dec96e;
  color: #293329;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .sanctuary-page .spaces-section .wellness-tile.pillar-slide:hover {
    box-shadow: 0 34px 70px rgba(7, 15, 10, .32);
  }

  .sanctuary-page .spaces-section .wellness-tile.pillar-slide:hover h3 {
    background: transparent;
    transform: translateY(-4px);
  }
}

@media (max-width: 575.98px) {
  .sanctuary-page .spaces-heading h2 br {
    display: none;
  }

  .sanctuary-page .spaces-section .wellness-tile.pillar-slide {
    flex-basis: 86%;
    min-height: 500px;
    border-radius: 14px;
  }

  .sanctuary-page .spaces-section .pillar-slider-controls {
    display: none;
  }
}

/* Recreated shared enquiry modal. */
.contact-modal {
  z-index: 1000;
  padding: clamp(1rem, 3vw, 2.5rem);
  overflow: hidden;
  transition: opacity .35s ease, visibility .35s ease;
}

.contact-modal-backdrop {
  background: rgba(10, 17, 12, .76);
  backdrop-filter: blur(14px) saturate(.75);
}

.contact-modal-panel {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  width: min(1080px, 100%);
  max-height: min(820px, calc(100vh - 3rem));
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  background: #f5f2e8;
  box-shadow: 0 42px 120px rgba(4, 10, 6, .42);
  transform: translateY(28px) scale(.975);
  transition: transform .4s cubic-bezier(.2, .75, .25, 1), opacity .35s ease;
}

.contact-modal.is-open .contact-modal-panel {
  transform: translateY(0) scale(1);
}

.contact-modal-panel > .contact-form-copy {
  position: relative;
  display: flex;
  min-width: 0;
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 4vw, 4rem);
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  background: #29382e;
  color: #fff;
}

.contact-modal-panel > .contact-form-copy::before,
.contact-modal-panel > .contact-form-copy::after {
  content: "";
  position: absolute;
  width: 310px;
  height: 310px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  pointer-events: none;
}

.contact-modal-panel > .contact-form-copy::before {
  top: -195px;
  left: -185px;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, .015);
}

.contact-modal-panel > .contact-form-copy::after {
  right: -215px;
  bottom: -210px;
}

.contact-modal .contact-form-copy > span,
.contact-page .contact-modal .contact-form-copy > span {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 1.25rem;
  color: #dec96e;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.contact-modal .contact-form-copy h2,
.contact-page .contact-modal .contact-form-copy h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(2.7rem, 4vw, 4.4rem) !important;
  font-weight: 400;
  line-height: 1 !important;
  letter-spacing: -.045em;
}

.contact-modal .contact-form-copy > p,
.contact-page .contact-modal .contact-form-copy > p {
  position: relative;
  z-index: 1;
  max-width: 380px;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, .64);
  font-size: .95rem !important;
  line-height: 1.65 !important;
}

.contact-modal-close {
  top: 1.25rem;
  right: 1.25rem;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(42, 54, 44, .18);
  border-radius: 50%;
  background: rgba(245, 242, 232, .9);
  color: #293329;
  font-family: var(--sans);
  font-size: 1.45rem;
  transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.contact-modal-close:hover,
.contact-modal-close:focus {
  border-color: #29382e;
  background: #29382e;
  color: #fff;
  outline: 0;
  transform: rotate(90deg);
}

.contact-modal .modal-contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1rem;
  min-width: 0;
  margin: 0;
  padding: clamp(3.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem) clamp(2.5rem, 4vw, 4rem);
  overflow-y: auto;
  background: #f5f2e8;
  box-shadow: none;
}

.contact-modal .modal-contact-form .form-field-full,
.contact-modal .modal-contact-form .form-status,
.contact-modal .modal-contact-form .discovery-btn {
  grid-column: 1 / -1;
}

.contact-modal .modal-contact-form label {
  display: block;
  margin-bottom: .5rem;
  color: #667068;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-modal .modal-contact-form input,
.contact-modal .modal-contact-form select,
.contact-modal .modal-contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(42, 54, 44, .28);
  border-radius: 0;
  background: transparent;
  color: #293329;
  box-shadow: none;
  transition: border-color .25s ease, background-color .25s ease;
}

.contact-modal .modal-contact-form input,
.contact-modal .modal-contact-form select {
  min-height: 48px;
}

.contact-modal .modal-contact-form textarea {
  min-height: 92px;
  padding-top: .75rem;
  resize: vertical;
}

.contact-modal .modal-contact-form input::placeholder,
.contact-modal .modal-contact-form textarea::placeholder {
  color: #9ba099;
}

.contact-modal .modal-contact-form input:focus,
.contact-modal .modal-contact-form select:focus,
.contact-modal .modal-contact-form textarea:focus {
  border-bottom-color: #8a7428;
  outline: 0;
}

.contact-modal .modal-contact-form .form-status {
  min-height: 1.35rem;
  margin: 0;
  color: #536657;
  font-size: .82rem !important;
  line-height: 1.5 !important;
}

.contact-modal .modal-contact-form .form-status.is-error {
  color: #9b3d32;
}

.contact-modal .modal-contact-form .discovery-btn {
  width: 100%;
  min-height: 54px;
  margin-top: .25rem;
  border: 1px solid #29382e;
  border-radius: 2px;
  background: #29382e;
  color: #fff;
  box-shadow: none;
  font-size: .75rem;
  letter-spacing: .1em;
}

.contact-modal .modal-contact-form .discovery-btn:hover,
.contact-modal .modal-contact-form .discovery-btn:focus {
  border-color: #1e2b23;
  background: #1e2b23;
  color: #fff;
  box-shadow: 0 14px 30px rgba(31, 44, 36, .16);
}

@media (max-width: 767.98px) {
  .contact-modal {
    padding: 0;
  }

  .contact-modal-panel {
    grid-template-columns: 1fr;
    width: 100%;
    height: 100%;
    max-height: none;
    border: 0;
    border-radius: 0;
    overflow-y: auto;
  }

  .contact-modal-panel > .contact-form-copy {
    min-height: 260px;
    padding: 4.5rem 1.25rem 2.5rem;
  }

  .contact-modal .contact-form-copy h2,
  .contact-page .contact-modal .contact-form-copy h2 {
    font-size: clamp(2.5rem, 12vw, 3.5rem) !important;
  }

  .contact-modal-close {
    position: fixed;
    top: .9rem;
    right: .9rem;
    border-color: rgba(255, 255, 255, .35);
    background: rgba(20, 31, 23, .72);
    color: #fff;
    backdrop-filter: blur(8px);
  }

  .contact-modal .modal-contact-form {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem 3rem;
    overflow: visible;
  }

  .contact-modal .modal-contact-form .form-field,
  .contact-modal .modal-contact-form .form-field-full,
  .contact-modal .modal-contact-form .form-status,
  .contact-modal .modal-contact-form .discovery-btn {
    grid-column: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-modal,
  .contact-modal-panel,
  .contact-modal-close {
    transition: none !important;
  }
}

/* Recreated Our Story page. */
.story-page {
  background: #f5f2e8;
}

.story-page .story-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  min-height: 800px;
  background: #29382e;
}

.story-page .story-hero::before {
  border-color: rgba(255, 255, 255, .08);
}

.story-page .story-hero-copy {
  padding: clamp(6rem, 8vw, 8.5rem) var(--page-gutter) !important;
  color: #fff;
}

.story-page .story-hero-copy .hero-kicker {
  color: #dec96e !important;
}

.story-page .story-hero h1 {
  color: #fff;
  font-size: clamp(3.8rem, 6vw, 6.6rem) !important;
  line-height: .98 !important;
}

.story-page .story-hero p {
  max-width: 580px;
  color: rgba(255, 255, 255, .68);
  font-size: 1.08rem !important;
  font-weight: 400;
  line-height: 1.65 !important;
}

.story-page .story-hero-btn {
  border-color: #dec96e;
  background: #dec96e;
  color: #263229;
}

.story-page .story-text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: #fff;
  white-space: nowrap;
}

.story-page .story-text-link::after {
  background: rgba(255, 255, 255, .45);
}

.story-page .story-logo-panel {
  position: relative;
  padding: clamp(4rem, 7vw, 7rem) !important;
  overflow: hidden;
  background: #d9cda7;
}

.story-page .story-logo-panel::before,
.story-page .story-logo-panel::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(45, 56, 46, .12);
  border-radius: 50%;
}

.story-page .story-logo-panel::before {
  top: -260px;
  right: -230px;
}

.story-page .story-logo-panel::after {
  bottom: -300px;
  left: -250px;
}

.story-logo-lockup {
  position: relative;
  z-index: 1;
  width: min(360px, 100%);
  text-align: center;
}

.story-logo-lockup > span {
  display: block;
  margin-bottom: 2.5rem;
  color: #655621;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-page .story-logo-lockup img {
  width: min(310px, 100%);
  animation: none;
}

.story-logo-lockup p {
  margin: 2.5rem 0 0;
  color: #3d473e;
  font-size: .7rem !important;
  font-weight: 800 !important;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.story-page .story-intro {
  background: #f6f3ea;
}

.story-page .story-intro .container-fluid {
  grid-template-columns: minmax(300px, .8fr) minmax(0, 1.2fr);
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

.story-page .story-intro-title span,
.story-page .story-pillars-heading > span,
.story-page .story-vision-copy > span,
.story-page .story-cta > div > span {
  display: block;
  margin-bottom: 1.2rem;
  color: #897328;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.story-page .story-intro h2 {
  max-width: 650px;
  margin: 0;
  color: #293329;
  font-size: clamp(3rem, 4.7vw, 5rem) !important;
  line-height: 1 !important;
  letter-spacing: -.05em;
}

.story-page .story-intro-copy {
  max-width: 680px;
}

.story-page .story-intro-copy p {
  color: #4b544c;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.story-page .story-intro-copy .story-lead {
  margin-top: 0;
  color: #303b32;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.1vw, 2.2rem) !important;
  line-height: 1.35 !important;
}

.story-scope {
  padding: 0 var(--page-gutter) var(--section-y);
  background: #f6f3ea;
}

.story-scope .container-fluid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid rgba(43, 56, 46, .16);
  border-left: 1px solid rgba(43, 56, 46, .16);
}

.story-scope article {
  min-height: 250px;
  padding: 1.75rem;
  border-right: 1px solid rgba(43, 56, 46, .16);
  border-bottom: 1px solid rgba(43, 56, 46, .16);
  background: rgba(255, 255, 255, .38);
}

.story-scope article > span,
.story-page .story-pillars article > span {
  color: #897328;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.story-scope h3 {
  margin: 3.5rem 0 .85rem;
  color: #293329;
  font-family: var(--serif);
  font-size: 1.7rem !important;
  font-weight: 400 !important;
}

.story-scope p {
  margin: 0;
  color: #59615a;
  font-size: .9rem !important;
  line-height: 1.55 !important;
}

.story-page .story-pillars {
  background: #29382e;
  color: #fff;
}

.story-page .story-pillars .container-fluid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1500px;
  margin: 0 auto;
  padding: 0;
}

.story-pillars-heading {
  grid-column: 1 / -1;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.story-page .story-pillars-heading > span {
  color: #dec96e;
}

.story-pillars-heading h2 {
  max-width: 700px;
  margin: 0;
  color: #fff;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.7vw, 5rem) !important;
  font-weight: 400;
  line-height: 1 !important;
  letter-spacing: -.05em;
}

.story-page .story-pillars article {
  min-height: 330px;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .04);
}

.story-page .story-pillars article > span {
  color: #dec96e;
}

.story-page .story-pillars h3 {
  margin-top: 4.5rem;
  color: #fff;
  font-size: clamp(1.65rem, 2.2vw, 2.3rem) !important;
}

.story-page .story-pillars article p {
  color: rgba(255, 255, 255, .65);
  font-size: .95rem !important;
  line-height: 1.6 !important;
}

.story-vision {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  min-height: 760px;
  background: #e9e1d0;
}

.story-vision-image {
  min-height: 760px;
  overflow: hidden;
}

.story-vision-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-vision-copy {
  align-self: center;
  padding: var(--section-y) var(--page-gutter);
}

.story-vision-copy h2 {
  margin: 0;
  color: #293329;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.5vw, 4.8rem) !important;
  font-weight: 400;
  line-height: 1 !important;
  letter-spacing: -.05em;
}

.story-vision-copy p {
  max-width: 560px;
  margin: 2rem 0;
  color: #4b544c;
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.story-vision-copy a {
  display: inline-block;
  padding-bottom: .4rem;
  border-bottom: 1px solid #7f6a24;
  color: #293329;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-decoration: none;
  text-transform: uppercase;
}

.story-page .story-cta {
  background: #d9cda7;
}

.story-page .story-cta > div > span {
  color: #6c5b21;
}

.story-page .story-cta h2,
.story-page .story-cta p {
  color: #293329;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .story-scope article,
  .story-page .story-pillars article {
    transition: transform .45s cubic-bezier(.2, .75, .25, 1), background-color .45s ease, box-shadow .45s ease;
  }

  .story-scope article:hover,
  .story-page .story-pillars article:hover {
    z-index: 1;
    transform: translateY(-8px);
  }

  .story-page .story-pillars article:hover {
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 24px 54px rgba(8, 15, 10, .18);
  }

  .story-vision-image img {
    transition: transform 1s cubic-bezier(.2, .75, .25, 1), filter 1s ease;
  }

  .story-vision:hover .story-vision-image img {
    filter: saturate(1.06);
    transform: scale(1.025);
  }
}

@media (max-width: 991.98px) {
  .story-page .story-hero,
  .story-page .story-intro .container-fluid,
  .story-vision {
    grid-template-columns: 1fr;
  }

  .story-scope .container-fluid,
  .story-page .story-pillars .container-fluid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .story-vision-image {
    min-height: 560px;
  }
}

@media (max-width: 575.98px) {
  .story-page .story-hero {
    min-height: 0;
  }

  .story-page .story-hero-copy,
  .story-page .story-logo-panel,
  .story-page .story-intro,
  .story-page .story-pillars,
  .story-vision-copy,
  .story-page .story-cta {
    padding: 4.75rem 1.25rem !important;
  }

  .story-page .story-logo-panel {
    min-height: 430px;
  }

  .story-scope {
    padding: 0 1.25rem 4.75rem;
  }

  .story-scope .container-fluid,
  .story-page .story-pillars .container-fluid {
    grid-template-columns: 1fr;
  }

  .story-scope article,
  .story-page .story-pillars article {
    min-height: 0;
  }

  .story-scope h3,
  .story-page .story-pillars h3 {
    margin-top: 2.5rem;
  }

  .story-vision-image {
    min-height: 430px;
  }

  .story-page .story-cta h2 br {
    display: none;
  }
}

.web-page .investor-section {
  position: relative;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: clamp(4rem, 8vw, 9rem) !important;
  overflow: hidden;
}

.web-page .investor-section::before {
  content: "";
  position: absolute;
  top: -220px;
  left: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(255, 255, 255, .018), 0 0 0 144px rgba(255, 255, 255, .012);
  pointer-events: none;
}

.investor-title {
  position: sticky;
  top: 130px;
  align-self: start;
}

.investor-title > span {
  display: block;
  margin-bottom: 1.2rem;
  color: #dec96e;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.web-page .investor-title h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(3.2rem, 4.8vw, 5.3rem) !important;
  line-height: .98 !important;
  letter-spacing: -.05em;
}

.investor-title > p {
  max-width: 430px;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: .98rem !important;
  line-height: 1.65 !important;
}

.web-page .investor-list {
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.web-page .investor-card {
  position: relative;
  grid-template-columns: 38px 150px minmax(0, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  padding: clamp(2rem, 3.5vw, 3.5rem) 0;
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.investor-index {
  padding-top: .3rem;
  color: #dec96e;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .1em;
}

.investor-portrait {
  width: 150px;
  height: 180px;
  overflow: hidden;
  background: #1f2c24;
}

.web-page .investor-card .investor-portrait img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  filter: grayscale(.25) saturate(.78);
  object-fit: cover;
}

.investor-content {
  min-width: 0;
}

.web-page .investor-card h3 {
  margin: 0 0 .55rem;
  color: #fff;
  font-size: clamp(1.65rem, 2.15vw, 2.35rem) !important;
}

.web-page .investor-card p {
  margin: 0 0 1.6rem;
  color: #dec96e;
  font-size: .73rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.web-page .investor-card blockquote {
  max-width: 620px;
  margin: 0;
  padding-left: 1.4rem;
  border-left: 1px solid rgba(222, 201, 110, .5);
  color: rgba(255, 255, 255, .76);
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem) !important;
  font-style: italic;
  line-height: 1.5 !important;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .web-page .investor-card {
    transition: padding-left .45s ease, background-color .45s ease;
  }

  .web-page .investor-card .investor-portrait img {
    transition: transform .7s cubic-bezier(.2, .75, .25, 1), filter .7s ease;
  }

  .web-page .investor-card:hover {
    padding-left: 1rem;
    background: rgba(255, 255, 255, .035);
  }

  .web-page .investor-card:hover .investor-portrait img {
    filter: grayscale(0) saturate(1);
    transform: scale(1.045);
  }
}

@media (max-width: 991.98px) {
  .web-page .investor-section {
    grid-template-columns: 1fr;
  }

  .investor-title {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .web-page .investor-section {
    padding: 4.75rem 1.25rem !important;
  }

  .web-page .investor-card {
    grid-template-columns: 32px 84px minmax(0, 1fr);
    gap: .85rem;
    padding: 1.5rem 0;
  }

  .investor-portrait {
    width: 84px;
    height: 108px;
  }

  .web-page .investor-card h3 {
    font-size: 1.35rem !important;
  }

  .web-page .investor-card p {
    margin-bottom: 1rem;
    font-size: .66rem !important;
  }

  .web-page .investor-card blockquote {
    grid-column: 2 / -1;
    font-size: 1rem !important;
  }
}

.web-page .difference-section {
  background: #f1ecdf;
}

.web-page .healing-journey {
  background: #29382e;
}

.web-page .wellness-asset {
  background: #f8f5ed;
}

.web-page .wellness-asset::before {
  background: linear-gradient(160deg, #dfd2ad 0 16%, transparent 16% 28%, #dfd2ad 28% 44%, transparent 44% 100%);
  opacity: .42;
}

.web-page .return-banner {
  background: #1e2c23;
}

.web-page .vengurla-section {
  background: #e9e1d0;
}

.web-page .vengurla-section .distance-strip span {
  border-color: rgba(43, 56, 46, .14);
  background: rgba(250, 248, 241, .62);
}

.web-page .life-swaragya,
.web-page .gallery-section {
  background: #f8f5ed;
}

.web-page .life-swaragya {
  border-top: 1px solid rgba(43, 56, 46, .08);
}

.web-page .planning-cta {
  position: relative;
  overflow: hidden;
  background: #d9cda7;
}

.web-page .planning-cta::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -130px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(65, 61, 38, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 64px rgba(65, 61, 38, .045), 0 0 0 128px rgba(65, 61, 38, .025);
  pointer-events: none;
}

.web-page .planning-cta > * {
  position: relative;
  z-index: 1;
}

.web-page .planning-cta h2,
.web-page .planning-cta p {
  color: #273229;
}

.web-page .investor-section {
  background: #29382e;
}

.web-page .web-final-cta {
  background: #e5dfcf;
}

.web-page .web-final-cta::before {
  background: rgba(232, 227, 215, .68);
}

.web-page .web-footer {
  background: #f3f0e6;
}

@media (max-width: 575.98px) {
  .web-page .planning-cta::before {
    top: -110px;
    right: -140px;
    width: 300px;
    height: 300px;
  }
}

.contact-page .contact-grid {
  gap: 0 !important;
}

.contact-page .contact-card a,
.footer-contact a {
  overflow-wrap: anywhere;
}

.contact-page .contact-form-section .contact-form .form-status {
  grid-column: 1 / -1;
  margin: 0;
}

.contact-page .contact-form-section .contact-form .discovery-btn {
  grid-column: 1 / -1;
  margin-top: .25rem;
}

.villa-gallery-section .container-fluid,
.privileges-section .privileges-copy,
.faq-section .faq-copy,
.contact-details .container-fluid,
.contact-form-section .container-fluid {
  min-width: 0;
}

.web-footer > *,
.contact-card > *,
.villa-section-heading > *,
.story-hero > * {
  min-width: 0;
}

@media (max-width: 991.98px) {
  main > section[id],
  main > section [id] {
    scroll-margin-top: 92px;
  }

  .contact-page .contact-grid {
    gap: 0 !important;
  }

  .contact-page .contact-map-section {
    gap: 0 !important;
  }

  .privileges-section,
  .faq-section,
  .cta-section,
  .story-hero {
    gap: 0 !important;
  }
}

@media (max-width: 575.98px) {
  main > section[id],
  main > section [id] {
    scroll-margin-top: 80px;
  }

  .btn,
  .navbar-toggler,
  .pillar-arrow,
  .accordion-button {
    touch-action: manipulation;
  }

  .web-footer {
    padding-top: 4rem !important;
    padding-bottom: 4.5rem !important;
  }

  .contact-page .contact-form-section .contact-form .discovery-btn,
  .villas-page .villa-final-cta .discovery-btn,
  .sanctuary-page .cta-copy .waitlist-btn {
    min-height: 56px;
  }
}

/* Cinematic hero system shared across every page. */
.web-hero::after,
.hero-video::after,
.villa-hero::after,
.contact-hero::after {
  background:
    radial-gradient(circle at 50% 42%, rgba(0, 0, 0, .06) 0, rgba(0, 0, 0, .2) 45%, rgba(0, 0, 0, .58) 100%),
    linear-gradient(180deg, rgba(8, 18, 12, .18), rgba(8, 18, 12, .48));
}

.web-hero-content,
.sanctuary-hero-copy,
.villa-hero-copy,
.contact-hero-copy,
.story-hero-copy {
  isolation: isolate;
}

.web-hero-content,
.sanctuary-hero-copy,
.contact-hero-copy {
  width: min(980px, calc(100% - 2rem));
}

.web-hero-content::before,
.sanctuary-hero-copy::before,
.villa-hero-copy::before,
.contact-hero-copy::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  width: min(820px, 92vw);
  height: min(430px, 64vh);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(10, 18, 13, .24), transparent 68%);
  transform: translate(-50%, -50%) scale(.92);
  opacity: 0;
  animation: heroHaloIn 1.4s .15s cubic-bezier(.2, .75, .25, 1) forwards;
}

.hero-kicker {
  display: inline-flex !important;
  align-items: center;
  gap: .8rem;
  margin: 0 0 1.5rem !important;
  color: #f0d36a !important;
  font-size: clamp(.72rem, .9vw, .88rem) !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.hero-kicker::before,
.hero-kicker::after {
  content: "";
  width: clamp(24px, 4vw, 54px);
  height: 1px;
  background: currentColor;
  opacity: .72;
}

.web-hero h1,
.sanctuary-hero-copy h1,
.villa-hero-copy h1,
.contact-hero h1,
.story-hero h1 {
  text-wrap: balance;
  letter-spacing: -.045em;
}

.web-hero-content > *,
.sanctuary-hero-copy > *,
.villa-hero-copy > *,
.contact-hero-copy > *,
.story-hero-copy > * {
  opacity: 0;
  transform: translateY(28px);
  animation: heroContentIn .9s cubic-bezier(.2, .75, .25, 1) forwards;
}

.web-hero-content > :nth-child(1),
.sanctuary-hero-copy > :nth-child(1),
.villa-hero-copy > :nth-child(1),
.contact-hero-copy > :nth-child(2),
.story-hero-copy > :nth-child(1) { animation-delay: .2s; }

.web-hero-content > :nth-child(2),
.sanctuary-hero-copy > :nth-child(2),
.villa-hero-copy > :nth-child(2),
.contact-hero-copy > :nth-child(3),
.story-hero-copy > :nth-child(2) { animation-delay: .36s; }

.web-hero-content > :nth-child(3),
.sanctuary-hero-copy > :nth-child(3),
.villa-hero-copy > :nth-child(3),
.contact-hero-copy > :nth-child(4),
.story-hero-copy > :nth-child(3) { animation-delay: .52s; }

.web-hero-content > :nth-child(4),
.sanctuary-hero-copy > :nth-child(4),
.villa-hero-copy > :nth-child(4),
.contact-hero-copy > :nth-child(5),
.story-hero-copy > :nth-child(4) { animation-delay: .68s; }

.web-hero > video,
.hero-video > video,
.villa-hero > img,
.contact-hero > img:not(.contact-hero-mark) {
  animation: heroMediaIn 1.8s cubic-bezier(.2, .75, .25, 1) both, heroMediaDrift 18s 1.8s ease-in-out infinite alternate;
}

.sanctuary-hero-copy .hero-outline-btn,
.villa-hero-copy .hero-outline-btn,
.contact-hero-copy .hero-outline-btn {
  margin-top: clamp(1.5rem, 3vw, 2.3rem);
}

.hero-scroll-cue {
  position: absolute;
  z-index: 3;
  right: clamp(1.2rem, 4vw, 4rem);
  bottom: clamp(1.4rem, 4vw, 3rem);
  display: grid;
  justify-items: center;
  gap: .65rem;
  color: rgba(255, 255, 255, .84);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-decoration: none;
  text-transform: uppercase;
  opacity: 0;
  animation: heroContentIn .8s 1s ease forwards;
}

.hero-scroll-cue span {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, #f0d36a 50%, rgba(255, 255, 255, .24) 50%);
  background-size: 100% 200%;
  animation: scrollCue 2.2s ease-in-out infinite;
}

.hero-scroll-cue:hover,
.hero-scroll-cue:focus {
  color: #f0d36a;
}

.story-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f2efe3 0%, #e6e2d1 100%);
}

.story-hero::before {
  content: "";
  position: absolute;
  top: -28%;
  left: -12%;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(119, 101, 42, .2);
  border-radius: 50%;
  animation: storyOrbFloat 10s ease-in-out infinite alternate;
}

.story-hero-btn {
  display: inline-flex;
  margin-top: 2.3rem;
  padding: .95rem 1.6rem;
  border: 1px solid #66623f;
  border-radius: 999px;
  color: #2f2e2a;
  font-weight: 700;
  text-transform: uppercase;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}

.story-hero-btn:hover,
.story-hero-btn:focus {
  background: #303e31;
  color: #fff;
  transform: translateY(-3px);
}

.story-logo-panel img {
  animation: storyLogoIn 1.2s .4s cubic-bezier(.2, .75, .25, 1) both, storyLogoFloat 6s 1.6s ease-in-out infinite;
}

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

@keyframes heroHaloIn {
  to { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

@keyframes heroMediaIn {
  from { opacity: 0; transform: scale(1.09); }
  to { opacity: 1; transform: scale(1.03); }
}

@keyframes heroMediaDrift {
  from { transform: scale(1.03) translate3d(0, 0, 0); }
  to { transform: scale(1.08) translate3d(-.5%, -.35%, 0); }
}

@keyframes scrollCue {
  0% { background-position: 0 100%; }
  50%, 100% { background-position: 0 -100%; }
}

@keyframes storyOrbFloat {
  to { transform: translate3d(5%, 5%, 0) scale(1.05); }
}

@keyframes storyLogoIn {
  from { opacity: 0; transform: translateY(24px) scale(.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes storyLogoFloat {
  50% { transform: translateY(-10px); }
}

@media (max-width: 767.98px) {
  .hero-scroll-cue,
  .web-hero-meta {
    display: none;
  }

  .web-hero-content::before,
  .sanctuary-hero-copy::before,
  .villa-hero-copy::before,
  .contact-hero-copy::before {
    height: 320px;
  }

  .hero-kicker {
    letter-spacing: .13em;
  }

  .hero-kicker::before,
  .hero-kicker::after {
    width: 22px;
  }

  .story-hero-copy {
    min-height: 540px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .web-hero-content > *,
  .sanctuary-hero-copy > *,
  .villa-hero-copy > *,
  .contact-hero-copy > *,
  .story-hero-copy > *,
  .web-hero-content::before,
  .sanctuary-hero-copy::before,
  .villa-hero-copy::before,
  .contact-hero-copy::before,
  .web-hero > video,
  .hero-video > video,
  .villa-hero > img,
  .contact-hero > img:not(.contact-hero-mark),
  .hero-scroll-cue,
  .hero-scroll-cue span,
  .story-hero::before,
  .story-logo-panel img {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* Final Sanctuary section rhythm: dark / light / dark / white / light / dark. */
.sanctuary-page .pillars-section {
  background: #f1ecdf;
}

.sanctuary-page .life-stage {
  background: #29382e;
  color: #f7f3e8;
}

.sanctuary-page .life-stage-heading > span {
  color: #dec96e;
}

.sanctuary-page .life-stage-heading h2,
.sanctuary-page .life-stage .journey-line,
.sanctuary-page .life-stage .stage {
  color: #f7f3e8;
}

.sanctuary-page .life-stage .stage {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .055);
}

.sanctuary-page .life-stage .stage::before {
  border-color: rgba(222, 201, 110, .78);
  color: #dec96e;
}

.sanctuary-page .spaces-section {
  background: #fffdf7;
  color: #293329;
}

.sanctuary-page .spaces-heading > span {
  color: #897328;
}

.sanctuary-page .spaces-heading h2 {
  color: #293329;
}

.sanctuary-page .spaces-section .pillar-arrow {
  border-color: rgba(43, 56, 46, .18);
  background: #f1ecdf;
  color: #293329;
}

.sanctuary-page .spaces-section .pillar-arrow:hover,
.sanctuary-page .spaces-section .pillar-arrow:focus {
  border-color: #29382e;
  background: #29382e;
  color: #fff;
}

.sanctuary-page .cta-section {
  background: #e9e1d0;
}

.sanctuary-page .web-footer {
  border-top-color: rgba(255, 255, 255, .1);
  background: #223027;
  color: #f5f1e6;
}

.sanctuary-page .web-footer::before {
  background: linear-gradient(90deg, rgba(222, 201, 110, .52), rgba(255, 255, 255, .12), transparent);
}

.sanctuary-page .web-footer::after {
  color: rgba(255, 255, 255, .035);
}

.sanctuary-page .web-footer .footer-logo {
  filter: brightness(0) invert(.94);
}

.sanctuary-page .web-footer .footer-brand p,
.sanctuary-page .web-footer .footer-contact p,
.sanctuary-page .web-footer .footer-links a,
.sanctuary-page .web-footer .footer-contact a {
  color: rgba(245, 241, 230, .78);
}

.sanctuary-page .web-footer .footer-links h2,
.sanctuary-page .web-footer .footer-contact h2 {
  color: #f5f1e6;
}

.sanctuary-page .web-footer .footer-links a:hover,
.sanctuary-page .web-footer .footer-links a:focus,
.sanctuary-page .web-footer .footer-contact a:hover,
.sanctuary-page .web-footer .footer-contact a:focus {
  color: #dec96e;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .sanctuary-page .life-stage .stage:hover {
    background: rgba(255, 255, 255, .11);
    box-shadow: 0 24px 50px rgba(7, 15, 10, .2);
  }
}

/* Unified footer used across the complete website. */
.web-footer,
.web-page .web-footer,
.sanctuary-page .web-footer,
.villa-page .web-footer,
.contact-page .web-footer,
.story-page .web-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) minmax(180px, .65fr) minmax(240px, .8fr);
  gap: clamp(3rem, 6vw, 7rem);
  padding: clamp(5.5rem, 8vw, 8rem) var(--page-gutter) clamp(5rem, 7vw, 7rem) !important;
  overflow: hidden;
  border-top: 0;
  background: #223027;
  color: #f5f1e6;
}

.web-footer::before {
  content: "";
  position: absolute;
  inset: 1.5rem var(--page-gutter) auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(222, 201, 110, .56), rgba(255, 255, 255, .12), transparent);
}

.web-footer::after {
  color: rgba(255, 255, 255, .035);
}

.web-footer > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.web-footer .footer-logo {
  width: min(260px, 72vw);
  filter: brightness(0) invert(.94);
}

.web-footer .footer-brand p {
  max-width: 430px;
  margin-top: 2rem;
  color: rgba(245, 241, 230, .72);
  font-size: 1rem !important;
  font-weight: 500 !important;
  line-height: 1.75 !important;
}

.web-footer .footer-links,
.web-footer .footer-contact {
  display: grid;
  align-content: start;
  gap: .85rem;
  padding: 0;
}

.web-footer .footer-links h2,
.web-footer .footer-contact h2 {
  margin: 0 0 1rem;
  color: #f5f1e6;
  font-family: var(--serif);
  font-size: 1.75rem !important;
  font-weight: 400 !important;
  line-height: 1.1 !important;
}

.web-footer .footer-links a,
.web-footer .footer-contact a,
.web-footer .footer-contact p {
  color: rgba(245, 241, 230, .76);
  font-size: .96rem !important;
  font-weight: 600 !important;
  line-height: 1.6 !important;
}

.web-footer .footer-links a {
  width: fit-content;
  padding-bottom: .2rem;
}

.web-footer .footer-links a::after {
  height: 1px;
  background: #dec96e;
}

.web-footer .footer-links a:hover,
.web-footer .footer-links a:focus,
.web-footer .footer-contact a:hover,
.web-footer .footer-contact a:focus {
  color: #dec96e;
}

@media (max-width: 991.98px) {
  .web-footer,
  .web-page .web-footer,
  .sanctuary-page .web-footer,
  .villa-page .web-footer,
  .contact-page .web-footer,
  .story-page .web-footer {
    grid-template-columns: minmax(0, 1.2fr) minmax(160px, .8fr);
    gap: 3.5rem 2.5rem !important;
  }

  .web-footer .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575.98px) {
  .web-footer,
  .web-page .web-footer,
  .sanctuary-page .web-footer,
  .villa-page .web-footer,
  .contact-page .web-footer,
  .story-page .web-footer {
    grid-template-columns: 1fr;
    gap: 2.75rem !important;
    padding: 4.75rem 1.25rem 4rem !important;
  }

  .web-footer::before {
    inset: 1.25rem 1.25rem auto;
  }

  .web-footer .footer-brand {
    grid-column: auto;
  }

  .web-footer .footer-logo {
    width: min(230px, 70vw);
  }

  .web-footer .footer-brand p {
    margin-top: 1.5rem;
  }

  .web-footer .footer-links,
  .web-footer .footer-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, .1);
  }
}

/* Villas closing statement — premium ownership call to action. */
.villas-page .villa-final-cta {
  position: relative;
  min-height: 720px;
  padding: 0 !important;
  overflow: hidden;
  background: #d9cda7;
  color: #29382e;
  text-align: left !important;
}

.villas-page .villa-final-cta::before,
.villas-page .villa-final-cta::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(41, 56, 46, .1);
  border-radius: 50%;
  pointer-events: none;
}

.villas-page .villa-final-cta::before {
  width: clamp(380px, 46vw, 760px);
  aspect-ratio: 1;
  right: -18%;
  top: -42%;
  box-shadow: 0 0 0 70px rgba(41, 56, 46, .025), 0 0 0 140px rgba(41, 56, 46, .018);
}

.villas-page .villa-final-cta::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -85px;
}

.villas-page .villa-final-cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.28fr);
  width: min(1450px, 100%);
  min-height: 720px;
  margin: 0 auto;
  align-items: stretch;
}

.villas-page .villa-final-cta-mark {
  position: relative;
  display: grid;
  min-height: 100%;
  padding: clamp(3rem, 6vw, 6rem);
  place-content: center;
  justify-items: center;
  border-right: 1px solid rgba(41, 56, 46, .14);
}

.villas-page .villa-final-cta-mark::before {
  content: "";
  position: absolute;
  width: min(320px, 72%);
  aspect-ratio: 1;
  inset: 50% auto auto 50%;
  border: 1px solid rgba(41, 56, 46, .2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.villas-page .villa-final-cta-mark .cta-mark {
  width: clamp(90px, 10vw, 145px);
  margin: 1.5rem 0;
  opacity: .72;
  filter: sepia(.2) saturate(.65);
}

.villas-page .villa-final-cta-mark span {
  color: #6f6028;
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.villas-page .villa-final-cta-copy {
  display: flex;
  padding: clamp(5rem, 9vw, 9rem) clamp(2rem, 8vw, 8rem);
  justify-content: center;
  flex-direction: column;
}

.villas-page .villa-final-eyebrow {
  display: block;
  margin-bottom: 1.5rem;
  color: #756424;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.villas-page .villa-final-cta h2 {
  max-width: 760px;
  margin: 0;
  color: #29382e;
  font-size: clamp(3.5rem, 6.4vw, 7rem) !important;
  font-weight: 400;
  line-height: .88 !important;
  letter-spacing: -.06em;
}

.villas-page .villa-final-cta h2 em {
  color: #756424;
  font-weight: 400;
}

.villas-page .villa-final-cta p {
  max-width: 570px;
  margin: 2.25rem 0 2.75rem;
  color: #3e493f;
  font-size: clamp(1rem, 1.25vw, 1.18rem) !important;
  line-height: 1.7 !important;
}

.villas-page .villa-final-cta .discovery-btn {
  display: inline-flex;
  width: fit-content;
  min-height: 60px;
  padding: .95rem 1.1rem .95rem 1.6rem;
  gap: 1.5rem;
  border: 1px solid #29382e;
  border-radius: 0;
  background: #29382e;
  color: #fff;
  box-shadow: 0 18px 40px rgba(34, 48, 39, .16);
}

.villas-page .villa-final-cta .discovery-btn span:last-child {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #dec96e;
  color: #29382e;
  font-size: 1rem;
  transition: transform .35s ease;
}

.villas-page .villa-final-cta .discovery-btn:hover,
.villas-page .villa-final-cta .discovery-btn:focus {
  border-color: #1f2d24;
  background: #1f2d24;
  color: #fff;
  box-shadow: 0 22px 50px rgba(34, 48, 39, .24);
}

.villas-page .villa-final-cta .discovery-btn:hover span:last-child,
.villas-page .villa-final-cta .discovery-btn:focus span:last-child {
  transform: rotate(45deg);
}

@media (max-width: 767.98px) {
  .villas-page .villa-final-cta,
  .villas-page .villa-final-cta-inner {
    min-height: 0;
  }

  .villas-page .villa-final-cta-inner {
    grid-template-columns: 1fr;
  }

  .villas-page .villa-final-cta-mark {
    min-height: 285px;
    padding: 3rem 1.25rem;
    border-right: 0;
    border-bottom: 1px solid rgba(41, 56, 46, .14);
  }

  .villas-page .villa-final-cta-mark::before {
    width: 210px;
  }

  .villas-page .villa-final-cta-mark .cta-mark {
    width: 82px;
    margin: 1rem 0;
  }

  .villas-page .villa-final-cta-copy {
    padding: 4.5rem 1.25rem 5rem;
  }

  .villas-page .villa-final-cta h2 {
    font-size: clamp(3.2rem, 15vw, 4.8rem) !important;
  }

  .villas-page .villa-final-cta h2 br {
    display: none;
  }

  .villas-page .villa-final-cta p {
    margin: 1.75rem 0 2.25rem;
  }

  .villas-page .villa-final-cta .discovery-btn {
    width: 100%;
    justify-content: space-between;
  }
}

/* Final mobile centering safeguard. */
@media (max-width: 575.98px) {
  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) main > section {
    text-align: center;
  }

  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) main > section :is(h1, h2, h3, p, .subtitle, .section-label, .hero-kicker) {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) main > section :is(.btn, .discovery-btn, .waitlist-btn) {
    margin-right: auto;
    margin-left: auto;
  }

  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) .web-footer,
  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) .web-footer :is(.footer-brand, .footer-links, .footer-contact) {
    justify-items: center;
    text-align: center;
  }

  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) :is(.contact-form, .modal-contact-form, .villa-faq .accordion-body, .villa-faq .accordion-button),
  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) :is(.contact-form, .modal-contact-form) :is(label, input, select, textarea) {
    text-align: left;
  }
}

/* Contrast safeguard — keep this final in the cascade. */
/* Shared site-wide scroll motion. */
.whatsapp-floater {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2.25rem);
  bottom: clamp(1rem, 2.5vw, 2.25rem);
  z-index: 900;
  display: inline-flex;
  min-height: 62px;
  padding: 6px 6px 6px 1.2rem;
  align-items: center;
  gap: .8rem;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 999px;
  background: #1f8f4d;
  color: #fff;
  box-shadow: 0 16px 42px rgba(15, 52, 29, .28);
  text-decoration: none;
  transform: translateZ(0);
  transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-floater::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;
  border: 1px solid rgba(37, 211, 102, .3);
  border-radius: inherit;
  animation: whatsappPulse 2.4s ease-out infinite;
}

.whatsapp-floater-label {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .04em;
  white-space: nowrap;
}

.whatsapp-floater-icon {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
}

.whatsapp-floater-icon svg {
  width: 27px;
  height: 27px;
}

.whatsapp-floater:hover,
.whatsapp-floater:focus-visible {
  background: #187a40;
  color: #fff;
  box-shadow: 0 20px 52px rgba(15, 52, 29, .36);
  transform: translateY(-4px);
}

@keyframes whatsappPulse {
  0% { opacity: .85; transform: scale(.92); }
  70%, 100% { opacity: 0; transform: scale(1.18); }
}

@media (max-width: 575.98px) {
  .whatsapp-floater {
    right: 1rem;
    bottom: 1rem;
    width: 58px;
    min-height: 58px;
    padding: 5px;
    justify-content: center;
  }

  .whatsapp-floater-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .whatsapp-floater-icon {
    width: 48px;
    height: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-floater::before {
    animation: none;
  }
}

.desktop-scroll-progress.site-scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1200;
  display: block;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #dec96e, #9a8030);
  box-shadow: 0 1px 8px rgba(41, 56, 46, .16);
  pointer-events: none;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
  will-change: transform;
}

.site-header {
  transition: background-color .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(17, 28, 20, .1);
  backdrop-filter: blur(16px) saturate(.88);
}

.site-motion-section {
  --site-section-accent-opacity: 0;
}

.site-motion-section.is-section-active {
  --site-section-accent-opacity: 1;
}

.site-parallax-media {
  transform: translate3d(0, var(--site-parallax-shift, 0), 0) scale(1.045);
  transition: transform .12s linear;
  will-change: transform;
}

@media (max-width: 991.98px), (prefers-reduced-motion: reduce) {
  .site-parallax-media {
    transform: none;
    transition: none;
    will-change: auto;
  }
}

/* Component-level readability fixes for image, dark and interactive surfaces. */
/* Responsive polish and lightweight motion across all pages. */
.villas-page .master-plan-section {
  position: relative;
  padding: var(--section-y) var(--page-gutter) !important;
  overflow: hidden;
  background: #e9e1d0;
  color: #293329;
}

.villas-page .master-plan-section::before {
  content: "";
  position: absolute;
  top: -240px;
  right: -180px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(41, 56, 46, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 76px rgba(41, 56, 46, .022), 0 0 0 152px rgba(41, 56, 46, .014);
  pointer-events: none;
}

.villas-page .master-plan-section .container-fluid {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  padding: 0;
}

.master-plan-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .72fr);
  gap: clamp(3rem, 8vw, 9rem);
  margin-bottom: clamp(3.5rem, 6vw, 6rem);
  align-items: end;
}

.master-plan-heading > div:first-child > span {
  display: block;
  margin-bottom: 1.25rem;
  color: #756322;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.master-plan-heading h2 {
  max-width: 720px;
  margin: 0;
  color: #293329;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.8vw, 6.3rem) !important;
  font-weight: 400;
  line-height: .94 !important;
  letter-spacing: -.055em;
}

.master-plan-summary {
  padding-left: clamp(1.5rem, 3vw, 3rem);
  border-left: 1px solid rgba(41, 56, 46, .18);
}

.master-plan-summary > p {
  max-width: 540px;
  margin: 0;
  color: #465047;
  font-size: 1.05rem !important;
  line-height: 1.7 !important;
}

.master-plan-facts {
  display: flex;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 2rem;
}

.master-plan-facts > span {
  display: grid;
  gap: .25rem;
  color: #596159;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.master-plan-facts strong {
  color: #293329;
  font-family: var(--serif);
  font-size: 1.85rem;
  font-weight: 400;
  letter-spacing: -.03em;
  text-transform: none;
}

.master-plan-visual {
  position: relative;
  display: block;
  padding: clamp(.5rem, 1vw, 1rem);
  overflow: hidden;
  border: 1px solid rgba(41, 56, 46, .14);
  background: rgba(255, 255, 255, .34);
  box-shadow: 0 30px 80px rgba(32, 46, 35, .13);
}

.master-plan-visual img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform .8s cubic-bezier(.2, .75, .25, 1), filter .8s ease;
}

.master-plan-visual > span {
  position: absolute;
  right: clamp(1.25rem, 3vw, 2.5rem);
  bottom: clamp(1.25rem, 3vw, 2.5rem);
  display: inline-flex;
  min-height: 52px;
  padding: .8rem 1rem .8rem 1.3rem;
  align-items: center;
  gap: 1rem;
  background: rgba(34, 48, 39, .92);
  color: #fff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.master-plan-visual > span > span {
  color: #dec96e;
  font-size: 1rem;
}

@media (min-width: 992px) and (prefers-reduced-motion: no-preference) {
  .master-plan-visual:hover img {
    filter: saturate(1.06) contrast(1.02);
    transform: scale(1.018);
  }
}

@media (max-width: 767.98px) {
  .villas-page .master-plan-section {
    padding: 4.75rem 1.25rem !important;
  }

  .master-plan-heading {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.75rem;
    text-align: center;
  }

  .master-plan-heading h2 {
    margin-right: auto;
    margin-left: auto;
    font-size: clamp(3rem, 14vw, 4.5rem) !important;
  }

  .master-plan-summary {
    padding: 1.75rem 0 0;
    border-top: 1px solid rgba(41, 56, 46, .16);
    border-left: 0;
  }

  .master-plan-summary > p {
    margin-right: auto;
    margin-left: auto;
  }

  .master-plan-facts {
    justify-content: center;
  }

  .master-plan-visual {
    margin-right: -1.25rem;
    margin-left: -1.25rem;
    padding: .4rem;
    border-right: 0;
    border-left: 0;
  }

  .master-plan-visual > span {
    right: 1rem;
    bottom: 1rem;
    min-height: 46px;
  }
}

.mobile-section-marker {
  display: none;
}

.gallery-section > .mobile-section-marker,
.villa-gallery-section > .mobile-section-marker {
  display: none !important;
}

@media (max-width: 991.98px) {
  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) main > section {
    position: relative;
  }

  body main > section :is(h1, h2) {
    max-width: 14ch;
    margin-right: auto;
    margin-left: auto;
    text-wrap: balance;
  }

  body main > section p {
    max-width: 62ch;
  }

  body :is(.wellness-tile, .plan-card, .privilege-grid article, .partner-grid article, .ownership-steps article, .investment-section article, .story-scope article, .story-pillars article, .contact-card) {
    transform-origin: center bottom;
    -webkit-tap-highlight-color: transparent;
  }

  body :is(.wellness-tile, .plan-card, .privilege-grid article, .partner-grid article, .ownership-steps article, .investment-section article, .story-scope article, .story-pillars article, .contact-card):active {
    transform: translateY(-3px) scale(.992);
  }

  body :is(.pillar-track, .villa-gallery-grid) {
    scroll-snap-type: x mandatory;
    scroll-padding-inline: var(--page-gutter);
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }

  body :is(.pillar-track > *, .villa-gallery-grid > *) {
    scroll-snap-align: center;
  }

  body :is(.cta-image, .ownership-image, .faq-image, .story-vision-image, .healing-image, .vengurla-image) {
    overflow: hidden;
  }

  body :is(.cta-image, .ownership-image, .faq-image, .story-vision-image, .healing-image, .vengurla-image) img {
    transition: transform .75s cubic-bezier(.2, .75, .25, 1), filter .75s ease;
  }

  body :is(.btn, .discovery-btn, .waitlist-btn, .enquire-btn) {
    min-height: 54px;
    touch-action: manipulation;
  }
}

@media (max-width: 575.98px) {
  .sanctuary-page .hero-video {
    min-height: max(640px, 100svh);
    padding: 0 1.25rem !important;
  }

  .sanctuary-page .sanctuary-hero-copy {
    width: 100%;
    max-width: 34rem;
    margin: 0 auto !important;
    padding: 6.75rem 0 7rem !important;
  }

  .sanctuary-page .sanctuary-hero-copy .hero-kicker {
    margin: 0 auto 1.25rem !important;
  }

  .sanctuary-page .sanctuary-hero-copy h1 {
    margin: 0 auto !important;
    line-height: .98 !important;
  }

  .sanctuary-page .sanctuary-hero-copy p {
    max-width: 31rem;
    margin: 1.35rem auto 0 !important;
    line-height: 1.55 !important;
  }

  .sanctuary-page .sanctuary-hero-copy .hero-actions {
    gap: .9rem;
    margin: 2rem auto 0;
  }

  .sanctuary-page .sanctuary-hero-copy .hero-primary-btn {
    width: min(100%, 22rem);
  }

  .sanctuary-page .hero-scroll-cue {
    bottom: 1rem;
  }

  body :is(.web-hero, .hero-video, .villa-hero, .contact-hero) {
    display: flex;
    min-height: max(640px, 100svh);
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  body :is(.web-hero-content, .sanctuary-hero-copy, .villa-hero-copy, .contact-hero-copy) {
    display: flex;
    width: 100%;
    max-width: 34rem;
    margin: 0 auto !important;
    padding: 6.5rem 0 5.5rem !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center !important;
  }

  body :is(.web-hero-content, .sanctuary-hero-copy, .villa-hero-copy, .contact-hero-copy) :is(.hero-kicker, h1, p) {
    width: 100%;
    max-width: 100%;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  body :is(.web-hero-content, .sanctuary-hero-copy, .villa-hero-copy, .contact-hero-copy) .hero-actions,
  body .story-hero-copy .hero-actions {
    display: flex;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column;
    text-align: center;
  }

  body :is(.web-hero-content, .sanctuary-hero-copy, .villa-hero-copy, .contact-hero-copy, .story-hero-copy) .hero-actions :is(a, .btn) {
    margin-right: auto;
    margin-left: auto;
  }

  body .contact-hero-mark {
    margin-right: auto;
    margin-left: auto;
  }

  body .web-hero-meta {
    right: 1.25rem;
    left: 1.25rem;
    justify-content: center;
    text-align: center;
  }

  body .hero-scroll-cue {
    right: auto;
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
  }

  body .story-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  body .story-page .story-hero-copy {
    display: flex;
    width: 100%;
    min-height: 600px;
    padding: 6.5rem 1.25rem 5rem !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  body .story-page .story-hero-copy :is(.hero-kicker, h1, p) {
    max-width: 34rem;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  body .story-page .story-logo-panel,
  body .story-page .story-logo-lockup {
    justify-items: center;
    align-items: center;
    text-align: center;
  }

  body main > section.site-motion-section > .mobile-section-marker {
    display: block;
    position: absolute;
    top: 1.35rem;
    left: 50%;
    z-index: 3;
    width: 42px;
    height: 2px;
    border-radius: 999px;
    background: #a88f35;
    opacity: .75;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform .75s cubic-bezier(.2, .75, .25, 1) .12s;
    pointer-events: none;
  }

  body main > section.site-motion-section.is-section-active > .mobile-section-marker {
    transform: translateX(-50%) scaleX(1);
  }

  body main > section :is(h1, h2) {
    max-width: 11ch;
  }

  body main > section h3 {
    text-wrap: balance;
  }

  body :is(.wellness-tile, .plan-card, .privilege-grid article, .partner-grid article, .ownership-steps article, .investment-section article, .story-scope article, .story-pillars article, .contact-card) {
    box-shadow: 0 14px 38px rgba(30, 44, 34, .09);
  }

  body :is(.plan-card, .privilege-grid article, .partner-grid article, .ownership-steps article, .investment-section article, .story-scope article, .story-pillars article, .contact-card) {
    border-radius: 16px;
  }

  body :is(.cta-image, .ownership-image, .faq-image, .story-vision-image, .healing-image, .vengurla-image) {
    border-radius: 14px;
  }

  body .web-footer::before {
    transform: scaleX(var(--footer-line-progress, 1));
    transform-origin: center;
  }

  body :is(.discovery-btn, .waitlist-btn, .enquire-btn) {
    transition: transform .3s ease, background-color .3s ease, color .3s ease, box-shadow .3s ease;
  }

  body :is(.discovery-btn, .waitlist-btn, .enquire-btn):active {
    transform: scale(.975);
  }

  .desktop-scroll-progress.site-scroll-progress {
    height: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body main > section.site-motion-section > .mobile-section-marker,
  body :is(.wellness-tile, .plan-card, .privilege-grid article, .partner-grid article, .ownership-steps article, .investment-section article, .story-scope article, .story-pillars article, .contact-card),
  body :is(.cta-image, .ownership-image, .faq-image, .story-vision-image, .healing-image, .vengurla-image) img {
    transition: none !important;
  }
}

.web-page .difference-section .difference-core h3 {
  color: #fff;
  text-shadow: 0 2px 18px rgba(7, 15, 10, .32);
}

.web-page .difference-section .difference-core > span {
  color: #dec96e;
}

.web-page .difference-section .difference-core li {
  color: rgba(255, 255, 255, .82);
}

.villas-page .villa-gallery-section .villa-gallery-heading h2 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(7, 15, 10, .26);
}

.villas-page .villa-gallery-section .villa-gallery-heading > div > span {
  color: #dec96e;
}

body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) main > section :is(h1, h2, h3) {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
  text-wrap: balance;
}

body :is(
  .hero-kicker,
  .section-label,
  .pillars-heading > span,
  .life-stage-heading > span,
  .spaces-heading > span,
  .villa-final-eyebrow,
  .villa-section-heading > div > span,
  .story-intro-title > span,
  .story-pillars-heading > span,
  .story-vision-copy > span,
  .contact-intro > span,
  .contact-form-copy > span,
  .contact-map-copy > span
) {
  font-size: max(.75rem, 12px) !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
}

body :is(
  .wellness-tile,
  .gallery-grid figure,
  .healing-image,
  .faq-image,
  .ownership-image,
  .return-banner
) :is(h2, h3, figcaption, .healing-image-caption, .faq-image-caption) {
  color: #fff;
  text-shadow: 0 2px 18px rgba(7, 15, 10, .58);
}

body .wellness-tile h3,
body .sanctuary-page .pillars-section .wellness-tile h3,
body .sanctuary-page .spaces-section .wellness-tile h3 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(7, 15, 10, .72);
}

body :is(.healing-image-caption, .faq-image-caption) p {
  color: rgba(255, 255, 255, .88);
  line-height: 1.5 !important;
  text-shadow: 0 2px 16px rgba(7, 15, 10, .68);
}

.web-page :is(.healing-journey, .return-banner, .investor-section) p,
.sanctuary-page .life-stage p,
.villas-page .second-home p,
.contact-page .contact-form-section p,
.story-page .story-pillars p {
  color: rgba(247, 243, 232, .8);
}

.web-page :is(.difference-section, .wellness-asset, .vengurla-section, .life-swaragya, .planning-cta, .web-final-cta) p,
.sanctuary-page :is(.pillars-section, .spaces-section, .cta-section) p,
.villas-page :is(.villa-layouts, .villa-gallery-section, .privileges-section, .partners-section, .investment-section, .faq-section, .villa-final-cta) p,
.contact-page :is(.contact-details, .contact-map-section) p,
.story-page :is(.story-intro, .story-scope, .story-vision, .story-cta) p {
  color: #414b43;
}

body .villa-faq .accordion-button {
  color: #293329;
  font-weight: 650;
  line-height: 1.45 !important;
}

body .villa-faq .accordion-body {
  color: #414b43;
  line-height: 1.7 !important;
}

body :is(.contact-form, .modal-contact-form) :is(input, select, textarea) {
  color: #293329;
}

body :is(.contact-form, .modal-contact-form) :is(input, textarea)::placeholder {
  color: #69726b;
  opacity: 1;
}

body .web-footer :is(.footer-brand p, .footer-contact p, .footer-links a, .footer-contact a) {
  color: rgba(247, 243, 232, .8);
}

@media (max-width: 575.98px) {
  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) main > section p {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }

  body:is(.web-page, .sanctuary-page, .villas-page, .contact-page, .story-page) main > section h2 {
    line-height: 1.04 !important;
  }

  body :is(
    .hero-kicker,
    .section-label,
    .pillars-heading > span,
    .life-stage-heading > span,
    .spaces-heading > span,
    .villa-final-eyebrow,
    .villa-section-heading > div > span
  ) {
    font-size: .78rem !important;
    letter-spacing: .12em;
  }
}

.web-page :is(.difference-section, .wellness-asset, .vengurla-section, .life-swaragya, .gallery-section, .planning-cta, .web-final-cta),
.sanctuary-page :is(.pillars-section, .spaces-section, .cta-section),
.villas-page :is(.villa-layouts, .villa-gallery-section, .privileges-section, .partners-section, .investment-section, .faq-section, .villa-final-cta),
.contact-page :is(.contact-details, .contact-map-section),
.story-page :is(.story-intro, .story-scope, .story-vision, .story-cta) {
  color: var(--contrast-ink);
}

.web-page :is(.difference-section, .wellness-asset, .vengurla-section, .life-swaragya, .gallery-section, .planning-cta, .web-final-cta) :is(h2, h3),
.sanctuary-page :is(.pillars-section, .spaces-section, .cta-section) :is(h2, h3),
.villas-page :is(.villa-layouts, .villa-gallery-section, .privileges-section, .partners-section, .investment-section, .faq-section, .villa-final-cta) :is(h2, h3),
.contact-page :is(.contact-details, .contact-map-section) :is(h2, h3),
.story-page :is(.story-intro, .story-scope, .story-vision, .story-cta) :is(h2, h3) {
  color: var(--contrast-ink);
}

.web-page :is(.healing-journey, .return-banner, .investor-section),
.sanctuary-page .life-stage,
.villas-page .second-home,
.contact-page .contact-form-section,
.story-page .story-pillars {
  color: var(--contrast-paper);
}

.web-page :is(.healing-journey, .return-banner) :is(h2, h3),
.web-page .investor-title h2,
.sanctuary-page .life-stage :is(h2, h3, .stage),
.villas-page .second-home :is(h2, h3),
.contact-page .contact-form-section :is(h2, h3, label),
.story-page .story-pillars :is(h2, h3) {
  color: var(--contrast-paper);
}

.web-page :is(.healing-journey, .return-banner) p,
.web-page .investor-title p,
.story-page .story-pillars p {
  color: var(--contrast-paper-muted);
}

@media (min-width: 768px) {
  .villas-page .ownership-model,
  .villas-page .ownership-model :is(h2, h3) {
    color: var(--contrast-paper);
  }

  .villas-page .ownership-model p {
    color: var(--contrast-paper-muted);
  }
}

@media (max-width: 767.98px) {
  .villas-page .ownership-model,
  .villas-page .ownership-model :is(h2, h3, p) {
    color: var(--contrast-ink);
  }
}
