/* --------------------------------------------------------------------------
   ANAHATA VILLAS DESIGN TOKENS
   Change the colours or fonts here to update the whole landing page.
   -------------------------------------------------------------------------- */
:root {
  --forest: #183c31;
  --deep: #102b23;
  --sage: #a8b8a3;
  --sand: #f4efe7;
  --cream: #fcfaf5;
  --terracotta: #b96843;
  --gold: #b99458;
  --charcoal: #252525;
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  /* ------------------------------------------------------------------------
     TYPOGRAPHY CONTROLS
     Change these values to update the shared editorial labels in one place.
     ------------------------------------------------------------------------ */
  /* Hero eyebrow: “YOUR FUTURE HOME” above the main hero headline. */
  --font-size-hero-label: 18px;
  /* Section kicker text: “THE ANAHATA STORY”, “THE VILLAS”, etc. */
  --font-size-section-label: 15px;
  /* The numeric markers: 01, 02, 03 ... always match their connected section label. */
  --font-size-section-number: var(--font-size-section-label);

  /* Shared font scale. These base values feed the semantic groups below. */
  --font-7: 7px;
  --font-8: 8px;
  --font-9: 9px;
  --font-10: 10px;
  --font-11: 11px;
  --font-12: 12px;
  --font-13: 13px;
  --font-14: 14px;
  --font-15: 15px;
  --font-16: 16px;
  --font-18: 18px;
  --font-20: 20px;
  --font-23: 23px;
  --font-24: 24px;
  --font-25: 25px;
  --font-27: 27px;
  --font-34: 34px;
  --font-36: 36px;
  /* Absolute cap: no text anywhere on the site can exceed this size. */
  --font-max: 40px;
  --font-40: var(--font-max);
  --font-45: var(--font-max);
  --font-48: var(--font-max);
  --font-50: var(--font-max);
  --font-sans: var(--sans);

  /*
     Semantic groups: change one of these to update every matching role.
     Body/paragraph = normal descriptive copy throughout the page.
     UI = navigation, links, small interface labels and helper text.
     Button = all filled/outlined CTA buttons and form submit buttons.
     Text link = underlined text CTAs such as “Find your place at Anahata”.
     Label = uppercase metadata, captions and small section labels.
     Micro = the smallest mobile-only helper labels.
     Contact/detail = contact information and form/detail copy.
     Carousel button = the round previous/next controls for media carousels.
  */
  --font-body: var(--font-16);
  --font-paragraph: var(--font-body);
  --font-ui: var(--font-11);
  /* Filled and outlined CTAs: “Download Brochure”, “Book a Site Visit”, etc. */
  --font-button: var(--font-ui);
  /* Underlined text CTAs: “Find your place at Anahata”, “Explore Anahata”, etc. */
  --font-text-link: var(--font-ui);
  --font-label: var(--font-10);
  --font-micro: var(--font-8);
  --font-contact: var(--font-13);
  --font-detail: var(--font-12);
  --font-carousel-button: var(--font-20);
  /* FOOTER CONTROLS: edit these five values to resize only footer text. */
  /* Footer line under the logos: “Your perfect weekend hideaway.” */
  --font-footer-tagline: var(--font-20);
  /* Footer menu: The story, Villas, Amenities, Location and Contact us. */
  --font-footer-links: var(--font-ui);
  /* Footer contact heading: “For details call”. */
  --font-footer-contact-label: var(--font-label);
  /* Footer phone number and WhatsApp link. */
  --font-footer-contact-links: var(--font-contact);
  /* Lowest legal/copyright line in the footer. */
  --font-footer-legal: var(--font-label);
  /* THE ADDRESS OF EVERY GENERATION: values and labels in its 8-card grid. */
  --font-address-pointer-value: var(--font-max);
  --font-address-pointer-label: var(--font-label);

  /*
     Responsive display sizes: large serif headings. Each variable is used by
     the named area so you can resize major headlines without hunting through
     the rest of the stylesheet.
  */
  /* Every h2 heading is fixed at the site-wide 40px maximum. */
  --font-h2: var(--font-max);
  /* Main hero headline: “Your perfect weekend hideaway.” */
  --font-hero-title: var(--font-h2);
  /* Main section headlines such as “Where the weekend feels endless.” */
  --font-section-title: var(--font-h2);
  /* Club section headline. */
  --font-club-title: var(--font-h2);
  /* Dark enquiry/CTA section headline. */
  --font-enquire-title: var(--font-h2);
  /* Popup enquiry headline. */
  --font-popup-title: var(--font-h2);
  /* Hero headline size on small screens. */
  --font-mobile-hero-title: var(--font-h2);
  /* Large numeric fact values. */
  --font-facts-title: var(--font-max);
  /* Large pointer/highlight values. */
  --font-pointer-title: var(--font-address-pointer-value);
}
/* Basic browser reset and shared element defaults. */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--sand);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: var(--font-paragraph);
  line-height: 1.65;
}
p {
  font-size: var(--font-paragraph);
}
img,
video {
  display: block;
  max-width: 100%;
}
button,
a {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
/* Shared page width: all sections line up to this same content column. */
.container {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--cream);
  padding: 0.75rem 1rem;
  z-index: 999;
}
.skip-link:focus {
  top: 1rem;
}
/* --------------------------------------------------------------------------
   HEADER, NAVIGATION AND BUTTONS
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 20;
  color: var(--white);
  transition:
    background 0.35s,
    box-shadow 0.35s;
}
.site-header.is-scrolled {
  background: rgba(16, 43, 35, 0.96);
  box-shadow: 0 5px 25px #0002;
}
.nav-wrap {
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  width: 106px;
  height: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}
.brand-divider {
  height: 34px;
  width: 1px;
  background: #ffffff66;
}
.brand-project {
  font: 600 var(--font-15)/1 var(--serif);
  letter-spacing: 0.18em;
}
.brand-project small {
  font: 500 var(--font-9)/2 var(--sans);
  letter-spacing: 0.38em;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.desktop-nav a,
.phone-link {
  font-size: var(--font-ui);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.desktop-nav a:hover,
.phone-link:hover {
  opacity: 1;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  padding: 14px 22px;
  font-size: var(--font-button);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 0.25s,
    background 0.25s,
    color 0.25s,
    border-color 0.25s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-small {
  padding: 11px 16px;
}
.button-dark {
  background: var(--forest);
  color: var(--white);
}
.button-dark:hover {
  background: var(--deep);
}
.button-light {
  background: var(--white);
  color: var(--forest);
}
.button-light:hover {
  background: var(--sand);
}
.button-outline {
  border-color: var(--forest);
  color: var(--forest);
  background: transparent;
}
.button-outline:hover {
  color: var(--white);
  background: var(--forest);
}
.menu-toggle,
.mobile-nav {
  display: none;
}
/* --------------------------------------------------------------------------
   HERO / FIRST SCREEN
   The video fills the background; the shade keeps the headline readable.
   -------------------------------------------------------------------------- */
.hero {
  height: min(850px, 100svh);
  min-height: 680px;
  background: var(--deep);
  color: var(--white);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #102b23d9 0%, #102b2380 38%, #102b2333 100%),
    linear-gradient(0deg, #102b23a8 0%, transparent 40%, #102b2366 100%);
}
.hero-content {
  position: relative;
  padding-top: 100px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--terracotta);
  font-size: var(--font-size-hero-label);
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}
.eyebrow-light {
  color: #d9c291;
}
.hero h1,
h2 {
  font: 500 var(--font-hero-title)/0.89 var(--serif);
  letter-spacing: -0.035em;
  margin: 0;
}
.hero h1 em,
h2 em {
  font-weight: 400;
}
.hero-copy {
  max-width: 440px;
  margin: 30px 0 30px;
  font-size: var(--font-body);
  color: #fffcc;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-text-link);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.text-link span {
  font-size: var(--font-body);
}
.light-link {
  color: var(--white);
}
.dark-link {
  color: var(--forest);
  border-bottom: 1px solid #183c3180;
  padding-bottom: 5px;
}
.hero-note {
  position: absolute;
  /* Keep the editorial note inside the hero container on every desktop size. */
  right: 0;
  left: auto;
  top: 260px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
  font: italic var(--font-18) var(--serif);
  transform: none;
  color: #ffffffbb;
}
.hero-line {
  height: 1px;
  width: 54px;
  background: #ffffff99;
}
.hero-facts {
  position: absolute;
  bottom: 28px;
  left: 50%;
  width: min(1180px, calc(100% - 64px));
  transform: translateX(-50%);
  display: flex;
  justify-content: flex-end;
  gap: 34px;
  color: #fffbd;
  font-size: var(--font-label);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.hero-facts span + span {
  border-left: 1px solid #fff6;
  padding-left: 34px;
}
/* --------------------------------------------------------------------------
   STORY, FACTS AND SHARED SECTION LAYOUTS
   -------------------------------------------------------------------------- */
.section-pad {
  padding: 130px 0;
}
.intro {
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1.05fr;
  gap: 50px;
  align-items: start;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--terracotta);
  font-size: var(--font-size-section-label);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.section-kicker > span:first-child {
  font-size: var(--font-size-section-number);
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: 0;
}
.kicker-line {
  height: 1px;
  width: 32px;
  background: currentColor;
  opacity: 0.6;
}
.intro-copy {
  padding-top: 44px;
}
.intro-copy h2 {
  font-size: var(--font-section-title);
  color: var(--forest);
  margin-bottom: 28px;
}
.intro-copy > p:not(.eyebrow) {
  max-width: 410px;
  color: #58635d;
  margin: 0 0 18px;
}
.intro-copy .text-link {
  margin-top: 18px;
}
.image-frame {
  position: relative;
  overflow: hidden;
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.image-frame:hover img {
  transform: scale(1.035);
}
.intro-image {
  height: 525px;
  margin-top: 34px;
}
.facts-band {
  background: var(--forest);
  color: var(--white);
  padding: 42px 0;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.facts-grid > div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 30px;
  border-right: 1px solid #ffffff29;
}
.facts-grid > div:first-child {
  padding-left: 0;
}
.facts-grid > div:last-child {
  border: 0;
}
.facts-grid strong {
  font: 500 var(--font-48)/1 var(--serif);
  color: #d6c18d;
}
.facts-grid span {
  font-size: var(--font-label);
  line-height: 1.5;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffffbf;
}
.section-cream {
  background: var(--cream);
}
.split-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
}
.split-heading h2 {
  color: var(--forest);
  margin-top: 24px;
}
.split-heading > p {
  max-width: 400px;
  margin: 0 0 5px;
  color: #657068;
}
.arrival-images {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  margin-top: 70px;
  height: 540px;
  align-items: stretch;
}
.arrival-images .tall {
  height: 100%;
}
.arrival-side-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 18px;
  min-width: 0;
}
.arrival-side-grid .arrival-small {
  height: 100%;
  margin: 0;
}
.arrival-side-grid .arrival-square {
  grid-column: 1 / -1;
}
/* --------------------------------------------------------------------------
   ARRIVAL, COMMUNITY, CLUB AND VILLA SECTIONS
   -------------------------------------------------------------------------- */
.masterplan {
  background: var(--sand);
}
.master-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 70px;
  align-items: center;
}
.master-copy h2 {
  color: var(--forest);
  margin: 24px 0;
}
.master-copy > p:not(.eyebrow) {
  max-width: 390px;
  color: #657068;
  margin: 0 0 30px;
}
.master-image {
  height: 540px;
  border: 0;
  padding: 0;
  width: 100%;
  background: var(--cream);
  text-align: left;
}
.master-image img {
  object-fit: contain;
}
.zoom-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: var(--white);
  padding: 12px 16px;
  color: var(--forest);
  font-size: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.zoom-badge span {
  font-size: var(--font-body);
  margin-left: 10px;
}
.section-dark {
  background: var(--deep);
  color: var(--white);
}
.light-kicker {
  color: #d5b977;
}
.club-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin: 25px 0 60px;
}
.club-heading h2 {
  font-size: var(--font-club-title);
}
.club-heading p {
  max-width: 300px;
  color: #c0cec3;
  margin: 0 0 4px;
}
/* The Club: a horizontal image gallery. It can be swiped, scrolled or controlled with arrows. */
.club-carousel {
  overflow: hidden;
}
.club-carousel-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.club-carousel-toolbar p {
  max-width: 520px;
  margin: 0;
  color: #c0cec3;
}
.club-carousel-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.club-carousel-track::-webkit-scrollbar {
  display: none;
}
.club-slide {
  position: relative;
  flex: 0 0 min(62vw, 640px);
  height: 430px;
  min-width: 0;
  border: 0;
  padding: 0;
  color: var(--white);
  cursor: zoom-in;
  scroll-snap-align: start;
  text-align: left;
}
.club-slide::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.66));
  pointer-events: none;
}
.club-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}
.club-slide:hover img,
.club-slide:focus-visible img {
  transform: scale(1.045);
}
.club-slide span {
  position: absolute;
  z-index: 1;
  bottom: 18px;
  left: 20px;
  font: italic var(--font-23) var(--serif);
  text-shadow: 0 2px 15px #000;
}
.club-slide span b {
  margin-left: 8px;
  font-family: var(--sans);
  font-size: var(--font-ui);
  font-style: normal;
}
.villas {
  background: var(--sand);
}
.villa-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 70px;
}
.villa-image {
  height: 420px;
  width: 100%;
  border: 0;
  padding: 0;
  background: var(--cream);
  text-align: left;
}
.villa-image img {
  object-fit: cover;
}
.image-arrow {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 43px;
  height: 43px;
  background: var(--white);
  color: var(--forest);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: var(--font-20);
}
.villa-meta {
  padding: 24px 0;
}
.villa-meta > span {
  color: var(--terracotta);
  font-size: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.16em;
}
.villa-meta h3 {
  font: 500 var(--font-45)/1 var(--serif);
  color: var(--forest);
  margin: 8px 0;
}
.villa-meta p {
  color: #657068;
  max-width: 300px;
  margin: 0 0 22px;
}
/* 3D visual story: one large community view with two supporting views. */
.visuals {
  background: var(--cream);
}
.visual-gallery {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
  margin-top: 62px;
}
.visual-card {
  position: relative;
  min-height: 0;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: var(--sand);
  text-align: left;
}
.visual-card-large {
  grid-row: 1 / span 2;
}
.visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s var(--ease),
    filter 0.5s ease;
}
.visual-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.05);
}
.visual-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  background: linear-gradient(transparent, #102b23aa);
  pointer-events: none;
}
.visual-card span {
  position: absolute;
  z-index: 1;
  left: 20px;
  bottom: 18px;
  color: var(--white);
  font-size: var(--font-ui);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #000;
}
.visual-card b {
  margin-left: 8px;
  color: var(--gold);
  font-size: var(--font-body);
}
/* --------------------------------------------------------------------------
   DEVELOPMENT UPDATE, LOCATION AND MAP
   -------------------------------------------------------------------------- */
.progress-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  grid-template-rows: 260px 260px;
  gap: 16px;
  margin-top: 70px;
}
.progress-grid button {
  border: 0;
  padding: 0;
  text-align: left;
  background: var(--forest);
}
.progress-feature {
  grid-row: span 2;
}
.progress-feature img,
.progress-tile img {
  object-fit: cover;
}
.progress-grid button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #102b2340, transparent 54%);
}
.fine-print {
  font-size: var(--font-ui);
  color: #768078;
  margin-top: 16px;
}
/* Development Update: clear visual separation between still images and drone films. */
.update-gallery-label {
  margin: 42px 0 0;
  color: var(--terracotta);
  font: 700 var(--font-ui) var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.progress-grid + .fine-print {
  margin-top: 16px;
}
.development-video-update {
  margin-top: 34px;
  padding-top: 0;
  border-top: 0;
}
.development-video-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 26px;
  margin-bottom: 28px;
}
.development-video-update .update-gallery-label {
  margin: 0 0 12px;
  color: var(--terracotta);
}
.development-video-update h3 {
  margin: 0;
  max-width: 520px;
  font: 400 var(--font-h2) / 0.98 var(--serif);
  letter-spacing: -0.045em;
  color: var(--forest);
}
.development-video-update h3 em {
  font-weight: 400;
}
.development-video-update .carousel-button {
  border-color: #183c3160;
  color: var(--forest);
}
.development-video-update .carousel-button:hover {
  background: var(--forest);
  color: var(--white);
}
.drone-video-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 3px 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.drone-video-track::-webkit-scrollbar {
  display: none;
}
.drone-video-card {
  flex: 0 0 clamp(300px, 48vw, 660px);
  min-width: 0;
  overflow: hidden;
  background: #e4e0d5;
  scroll-snap-align: start;
}
.drone-video-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}
.location {
  background: var(--cream);
}
.location-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.location-copy h2 {
  color: var(--forest);
  margin: 24px 0;
}
.location-copy > p:not(.eyebrow) {
  max-width: 370px;
  color: #657068;
}
.location-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.map-card {
  background: var(--sand);
  padding: 20px;
}
.map-art {
  height: 430px;
  position: relative;
  overflow: hidden;
  background: #d9dfca;
  background-image: radial-gradient(#bccaae 1px, transparent 1px);
  background-size: 20px 20px;
}
.map-art::before {
  content: "";
  position: absolute;
  width: 145%;
  height: 80px;
  top: 165px;
  left: -20%;
  background: #f6f1e6;
  transform: rotate(18deg);
  box-shadow:
    0 0 0 9px #cad2b9,
    0 0 0 12px #f6f1e6;
}
.map-art::after {
  content: "";
  position: absolute;
  width: 120%;
  height: 18px;
  top: 87px;
  left: -10%;
  background: #f6f1e6;
  transform: rotate(-25deg);
  box-shadow: 0 0 0 4px #cad2b9;
}
.map-road {
  position: absolute;
  background: #f6f1e6;
  box-shadow: 0 0 0 3px #cad2b9;
  z-index: 1;
}
.road-one {
  height: 13px;
  width: 110%;
  top: 300px;
  left: -5%;
  transform: rotate(-12deg);
}
.road-two {
  height: 9px;
  width: 80%;
  top: 30px;
  left: 12%;
  transform: rotate(48deg);
}
.road-three {
  height: 8px;
  width: 80%;
  top: 260px;
  left: 20%;
  transform: rotate(58deg);
}
.map-pin {
  width: 58px;
  height: 58px;
  border-radius: 50% 50% 50% 0;
  background: var(--terracotta);
  position: absolute;
  z-index: 2;
  top: 188px;
  left: 52%;
  transform: rotate(-45deg);
  box-shadow: 0 10px 20px #183c3140;
}
.map-pin i {
  position: absolute;
  width: 17px;
  height: 17px;
  background: var(--cream);
  border-radius: 50%;
  left: 20px;
  top: 20px;
}
.map-label {
  position: absolute;
  z-index: 2;
  top: 275px;
  left: calc(52% - 35px);
  font: 600 var(--font-body)/1 var(--serif);
  color: var(--forest);
  letter-spacing: 0.12em;
  text-align: center;
}
.map-label small {
  font: 700 var(--font-7)/2 var(--sans);
  letter-spacing: 0.3em;
}
.map-card > p {
  font-size: var(--font-ui);
  color: #6a756c;
  margin: 14px 0 0;
}
/* --------------------------------------------------------------------------
   LEAD GENERATION FORM
   These rules style both the inline form and the popup form copy.
   -------------------------------------------------------------------------- */
.enquire {
  background: var(--deep);
}
.enquire-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
  align-items: start;
}
.enquire-copy h2 {
  font-size: var(--font-enquire-title);
  margin: 22px 0;
  color: var(--white);
}
.enquire-copy > p {
  max-width: 310px;
  color: #c7d1c9;
}
.contact-details {
  display: grid;
  gap: 17px;
  margin-top: 60px;
}
.contact-details a {
  display: flex;
  flex-direction: column;
  color: var(--white);
  font: 500 var(--font-24) var(--serif);
}
.contact-details span {
  color: #d5b977;
  font: 700 var(--font-label) var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.form-panel {
  background: var(--cream);
  color: var(--forest);
  padding: 40px 42px;
}
.form-heading > span {
  font-size: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--terracotta);
}
.form-heading h3 {
  font: 500 var(--font-40)/1 var(--serif);
  margin: 12px 0 28px;
}
.field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 20px;
}
.field {
  display: grid;
  gap: 6px;
}
.field span {
  font-size: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b756d;
}
.field input,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #183c3150;
  background: transparent;
  color: var(--forest);
  padding: 9px 0;
  outline: 0;
  border-radius: 0;
}
.field input:focus,
.field select:focus {
  border-color: var(--terracotta);
  box-shadow: 0 1px 0 var(--terracotta);
}
.field input::placeholder {
  color: #9aa49b;
}
.field-full {
  grid-column: 1/-1;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 25px 0;
  font-size: var(--font-ui);
  line-height: 1.5;
  color: #6c766e;
}
.consent input {
  accent-color: var(--terracotta);
  margin-top: 3px;
}
.form-submit {
  background: var(--forest);
  color: var(--white);
  width: 100%;
  border: 0;
  font-size: var(--font-button);
}
.form-submit:hover {
  background: var(--terracotta);
}
.form-status {
  min-height: 20px;
  margin: 12px 0 0;
  font-size: var(--font-ui);
}
.form-status.error {
  color: #a43b2f;
}
.form-status.success {
  color: #286047;
}
.honeypot {
  position: absolute;
  left: -9999px;
  height: 1px;
  overflow: hidden;
}
.success-state {
  text-align: center;
  padding: 55px 10px;
}
.success-mark {
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--white);
  font-size: var(--font-25);
}
.success-state h3 {
  font: 500 var(--font-50) var(--serif);
  margin: 0;
  color: var(--forest);
}
.success-state p {
  color: #6c766e;
}
.success-state > div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
/* --------------------------------------------------------------------------
   FOOTER, IMAGE LIGHTBOX AND POPUP OVERLAYS
   -------------------------------------------------------------------------- */
.site-footer {
  background: #0b221c;
  color: #dce6dc;
  padding: 65px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 0.7fr;
  gap: 40px;
}
.footer-partner-logos {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
}
/* Footer partner logos: Chavda uses a tightly cropped source file, so each
   visible logo has balanced breathing room and a similar visual weight. */
.footer-logo-chavda {
  width: 92px;
  height: 29px;
  flex: 0 0 92px;
  background: url("https://chavdadevelopers.com/image/Chavda%20Developers%20Logo%20(2).png") no-repeat -12px -43px / 115px 115px;
}
.footer-logo-chavda img {
  display: none;
}
.footer-logo-sanghavi img {
  width: 64px;
  height: 48px;
  object-fit: contain;
}
.footer-logo-divider {
  width: 1px;
  height: 32px;
  background: #ffffff55;
}
.footer-logo-anahata > span {
  color: #fff;
  font: 600 var(--font-15)/1 var(--serif);
  letter-spacing: 0.18em;
}
.footer-logo-anahata small {
  display: block;
  margin-top: 4px;
  font: 600 var(--font-9)/1 var(--sans);
  letter-spacing: 0.35em;
}
.footer-grid > div > p {
  font: italic var(--font-footer-tagline) var(--serif);
  color: #b8c4ba;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  align-content: start;
}
.footer-links a,
.footer-contact a {
  font-size: var(--font-footer-links);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c7d2c9;
}
.footer-links a:hover,
.footer-contact a:hover {
  color: #d5b977;
}
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}
.footer-contact span {
  font-size: var(--font-footer-contact-label);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #d5b977;
}
.footer-contact a {
  font-size: var(--font-footer-contact-links);
}
.footer-bottom {
  border-top: 1px solid #ffffff22;
  margin-top: 55px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  color: #829188;
  font-size: var(--font-footer-legal);
}
@media (max-width: 540px) {
  .footer-partner-logos {
    gap: 10px;
  }
  /* Slightly smaller, but still visually balanced, on narrow screens. */
  .footer-logo-chavda {
    width: 83px;
    height: 26px;
    flex-basis: 83px;
    background-size: 104px 104px;
    background-position: -10px -39px;
  }
  .footer-logo-sanghavi img {
    width: 56px;
  }
  .footer-logo-divider {
    height: 28px;
  }
}
.lightbox {
  position: fixed;
  inset: 0;
  background: #081c15ed;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 40px;
}
.lightbox[hidden] {
  display: none;
}
.lightbox img {
  max-height: 88vh;
  max-width: min(1100px, 92vw);
  object-fit: contain;
}
.lightbox video {
  max-height: 88vh;
  max-width: min(1100px, 92vw);
  background: #000;
  object-fit: contain;
}
/* Safari can let the author video style override its native hidden rule. */
.lightbox img[hidden],
.lightbox video[hidden] {
  display: none !important;
}
.lightbox p {
  position: absolute;
  bottom: 10px;
  color: #fff;
  font-size: var(--font-detail);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lightbox-close {
  position: absolute;
  right: 26px;
  top: 18px;
  color: #fff;
  background: transparent;
  border: 0;
  font-size: var(--font-40);
  font-weight: 300;
}
.no-scroll {
  overflow: hidden;
}
/* Tablet and mobile navigation/layout adjustments. */
@media (max-width: 900px) {
  .container {
    width: min(100% - 40px, 650px);
  }
  .nav-wrap {
    height: 78px;
  }
  .desktop-nav,
  .phone-link,
  .nav-actions .button-small {
    display: none;
  }
  .menu-toggle {
    display: flex;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
  }
  .menu-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--white);
    transition: transform 0.2s;
  }
  .mobile-nav {
    display: grid;
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    background: var(--deep);
    padding: 10px 20px 20px;
    transform: translateY(-150%);
    transition: transform 0.3s;
  }
  .mobile-nav.is-open {
    transform: translateY(0);
  }
  .mobile-nav a {
    padding: 14px 0;
    border-bottom: 1px solid #fff2;
    font-size: var(--font-ui);
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .hero {
    min-height: 700px;
  }
  .hero-content {
    padding-top: 75px;
  }
  .hero h1 {
    font-size: var(--font-mobile-hero-title);
  }
  .hero-note {
    display: none;
  }
  .hero-facts {
    width: calc(100% - 40px);
    justify-content: space-between;
    gap: 10px;
  }
  .hero-facts span {
    font-size: var(--font-micro);
    letter-spacing: 0.08em;
  }
  .hero-facts span + span {
    padding-left: 10px;
  }
  .section-pad {
    padding: 90px 0;
  }
  .intro-grid,
  .master-grid,
  .location-grid,
  .enquire-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-copy {
    padding-top: 0;
  }
  .intro-image {
    height: 430px;
    margin-top: 0;
  }
  .facts-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .facts-grid > div {
    padding: 0;
    border: 0;
  }
  .facts-grid > div:first-child {
    padding-left: 0;
  }
  .split-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .arrival-images {
    grid-template-columns: 1fr 1fr;
    margin-top: 45px;
    height: 360px;
  }
  .arrival-images .tall {
    height: 100%;
  }
  .arrival-side-grid {
    gap: 12px;
  }
  .master-image {
    height: 430px;
  }
  .club-heading {
    display: block;
    margin-bottom: 40px;
  }
  .club-heading p {
    margin-top: 25px;
  }
  .club-slide {
    flex-basis: min(72vw, 520px);
    height: 360px;
  }
  .villa-grid {
    gap: 45px;
    margin-top: 50px;
  }
  .villa-image {
    height: 340px;
  }
  .progress-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 270px 190px;
  }
  .progress-feature {
    grid-column: 1/-1;
    grid-row: auto;
  }
  .development-video-update {
    margin-top: 56px;
  }
  .enquire-grid {
    gap: 45px;
  }
  .contact-details {
    margin-top: 35px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-contact {
    grid-column: 1/-1;
  }
  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}
/* Small-phone adjustments: compact type, stacked forms and bottom actions. */
@media (max-width: 540px) {
  .container {
    width: calc(100% - 32px);
  }
  .brand img {
    width: 84px;
  }
  .brand-project {
    font-size: var(--font-contact);
  }
  .hero {
    min-height: 680px;
  }
  .hero-copy {
    font-size: var(--font-14);
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-facts {
    bottom: 17px;
  }
  .hero-facts span:nth-child(3) {
    display: none;
  }
  .hero-facts span + span {
    border-left: 0;
  }
  .section-pad {
    padding: 72px 0;
  }
  .facts-band {
    padding: 30px 0;
  }
  .facts-grid {
    gap: 22px 8px;
  }
  .facts-grid strong {
    font-size: var(--font-34);
  }
  .facts-grid span {
    font-size: var(--font-micro);
  }
  .arrival-images {
    gap: 9px;
    height: 270px;
  }
  .arrival-images .tall {
    height: 100%;
  }
  .arrival-side-grid {
    gap: 9px;
  }
  .master-image {
    height: 300px;
  }
  .club-carousel-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .club-carousel-toolbar .carousel-controls {
    align-self: flex-end;
  }
  .club-slide {
    flex-basis: 82vw;
    height: 300px;
  }
  .villa-grid {
    grid-template-columns: 1fr;
  }
  .villa-image {
    height: 300px;
  }
  .progress-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px 150px;
  }
  .progress-tile {
    min-height: 150px;
  }
  .development-video-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .development-video-heading .carousel-controls {
    align-self: flex-end;
  }
  .location-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .map-art {
    height: 300px;
  }
  .form-panel {
    padding: 28px 22px;
  }
  .field-grid {
    grid-template-columns: 1fr;
  }
  .field-full {
    grid-column: auto;
  }
  .success-state > div {
    flex-direction: column;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-links {
    margin-top: 20px;
  }
  .footer-contact {
    grid-column: auto;
    margin-top: 10px;
  }
  .footer-bottom {
    margin-top: 35px;
  }
  .lightbox {
    padding: 15px;
  }
  .lightbox img {
    max-width: 100%;
  }
}
/* Lead popup */
/* Secondary call-to-action rows used below section headings. */
.cta-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.lead-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
}
.lead-popup[hidden] {
  display: none;
}
.lead-popup-backdrop {
  position: absolute;
  inset: 0;
  background: #071b14dd;
  backdrop-filter: blur(4px);
}
.lead-popup-dialog {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(720px, calc(100vh - 44px));
  overflow: auto;
  display: grid;
  grid-template-columns: 0.83fr 1.17fr;
  background: var(--cream);
  box-shadow: 0 25px 80px #0005;
}
.popup-intro {
  background: var(--deep);
  color: var(--white);
  padding: 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.popup-intro h2 {
  font-size: var(--font-popup-title);
  margin: 24px 0;
}
.popup-intro p {
  max-width: 260px;
  color: #c7d1c9;
}
.popup-contact {
  display: grid;
  gap: 13px;
  margin-top: 35px;
}
.popup-contact a {
  font-size: var(--font-detail);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #d5b977;
}
.popup-form-panel {
  padding: 38px 40px;
}
.popup-form-panel .form-heading h3 {
  font-size: var(--font-36);
}
.popup-form-panel .form-submit {
  margin-top: 5px;
}
.popup-form-panel .success-state {
  padding: 40px 10px;
}
.popup-close {
  z-index: 2;
}
.popup-close:hover {
  color: #d5b977;
}
.popup-intro .section-kicker {
  color: #d5b977;
}
.lead-popup-dialog {
  grid-template-columns: 1fr;
}
.popup-intro {
  padding: 34px 26px;
}
.popup-intro h2 {
  font-size: var(--font-48);
}
.popup-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}
.popup-form-panel {
  padding: 28px 22px;
}
@media (min-width: 901px) {
  .lead-popup-dialog {
    grid-template-columns: 0.83fr 1.17fr;
  }
  .popup-intro {
    padding: 48px 42px;
  }
  .popup-intro h2 {
    font-size: var(--font-popup-title);
  }
  .popup-contact {
    display: grid;
    gap: 13px;
    margin-top: 35px;
  }
  .popup-form-panel {
    padding: 38px 40px;
  }
}
/* --------------------------------------------------------------------------
   POLISH, MOTION AND INTERACTION STATES
   -------------------------------------------------------------------------- */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.17;
  background-image: radial-gradient(#fff 0.6px, transparent 0.6px);
  background-size: 4px 4px;
  mix-blend-mode: soft-light;
}
.hero-video {
  animation: hero-drift 22s ease-in-out infinite alternate;
  transform-origin: center;
}
@keyframes hero-drift {
  0% {
    transform: scale(1.02);
  }
  100% {
    transform: scale(1.09);
  }
}
.hero-content > * {
  animation: hero-rise 1s var(--ease) both;
}
.hero-content .eyebrow {
  animation-delay: 0.15s;
}
.hero-content h1 {
  animation-delay: 0.28s;
}
.hero-content .hero-copy {
  animation-delay: 0.4s;
}
.hero-content .hero-actions {
  animation-delay: 0.52s;
}
.hero-content .hero-note {
  animation-delay: 0.66s;
}
@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.section-kicker .kicker-line {
  transform-origin: left;
  transition: transform 0.7s var(--ease);
}
.section-kicker:hover .kicker-line {
  transform: scaleX(1.8);
}
.button {
  position: relative;
  overflow: hidden;
}
.button::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -35%;
  width: 25%;
  height: 260%;
  background: #ffffff55;
  transform: rotate(22deg) translateX(-250%);
  transition: transform 0.75s var(--ease);
}
.button:hover::after {
  transform: rotate(22deg) translateX(650%);
}
.image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    transparent 25%,
    #ffffff1c 45%,
    transparent 65%
  );
  transform: translateX(-120%);
  transition: transform 1s var(--ease);
}
.image-frame:hover::after {
  transform: translateX(120%);
}
.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
.js .reveal-scale {
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 1s var(--ease),
    transform 1s var(--ease);
}
.js .reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}
.facts-grid > div {
  transition:
    color 0.35s ease,
    transform 0.35s var(--ease);
}
.facts-grid > div:hover {
  transform: translateY(-5px);
}
.facts-grid strong {
  transition: color 0.35s ease;
}
.facts-grid > div:hover strong {
  color: #ead9a8;
}
.map-pin {
  animation: pin-pulse 2.8s ease-in-out infinite;
}
@keyframes pin-pulse {
  0%,
  100% {
    box-shadow: 0 10px 20px #183c3140;
  }
  50% {
    box-shadow:
      0 10px 20px #183c3140,
      0 0 0 11px #b9684330;
  }
}
.popup-intro h2 em {
  display: inline-block;
  animation: soft-sway 8s ease-in-out infinite alternate;
}
@keyframes soft-sway {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(5px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-video,
  .map-pin,
  .popup-intro h2 em {
    animation: none;
  }
  .hero-content > * {
    animation: none;
  }
  .button::after,
  .image-frame::after {
    display: none;
  }
  .js .reveal,
  .js .reveal-scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
/* Thin progress indicator fixed to the very top of the viewport. */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: transparent;
  z-index: 100;
  pointer-events: none;
}
.scroll-progress::after {
  content: "";
  display: block;
  height: 100%;
  width: var(--scroll-progress, 0%);
  background: linear-gradient(90deg, var(--gold), #e4cc94, var(--terracotta));
  box-shadow: 0 0 14px #d5b977aa;
  transition: width 0.1s linear;
}
.hero-copy {
  color: #ffffffcc;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
  background: linear-gradient(90deg, #d5b97710, transparent 45%, #d5b97710);
}
.site-header.is-scrolled::before {
  opacity: 1;
}
.mobile-action-bar {
  display: none;
}
.footer-links a {
  position: relative;
  width: max-content;
}
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.footer-links a:hover::after {
  width: 100%;
}
@media (max-width: 540px) {
  .mobile-action-bar {
    position: fixed;
    z-index: 25;
    bottom: 0;
    left: 0;
    right: 0;
    height: 62px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #102b23f5;
    border-top: 1px solid #d5b97744;
    backdrop-filter: blur(16px);
    padding-bottom: env(safe-area-inset-bottom);
  }
  .mobile-action-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    font-size: var(--font-9);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-right: 1px solid #ffffff20;
  }
  .mobile-action-bar a:last-child {
    border: 0;
    background: var(--terracotta);
  }
  .mobile-action-bar span {
    font-size: var(--font-body);
    color: #d5b977;
  }
  .site-footer {
    padding-bottom: 88px;
  }
}
.desktop-nav a.is-current {
  opacity: 1;
  color: #ead9a8;
}
.map-embed {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  background: var(--sand);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 430px;
  border: 0;
  filter: saturate(0.72) sepia(0.08);
  transition: filter 0.5s ease;
}
.map-embed:hover iframe {
  filter: saturate(0.95) sepia(0);
}
@media (max-width: 540px) {
  .map-embed,
  .map-embed iframe {
    height: 300px;
    min-height: 300px;
  }
}
/* --------------------------------------------------------------------------
   VIDEO CAROUSELS
   Reels are narrow portrait cards; the film strip is for landscape videos.
   -------------------------------------------------------------------------- */
.reels {
  overflow: hidden;
}
.reels-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 42px;
}
.reels-heading h2,
.film-heading h2 {
  margin: 14px 0 0;
}
.carousel-controls {
  display: flex;
  gap: 10px;
}
.carousel-button {
  width: 48px;
  height: 48px;
  border: 1px solid #ffffff45;
  border-radius: 50%;
  background: transparent;
  color: var(--cream);
  font: inherit;
  font-size: var(--font-carousel-button);
  cursor: pointer;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}
.carousel-button:hover {
  background: var(--gold);
  color: var(--ink);
  transform: translateY(-2px);
}
.reels-track,
.film-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 0 18px;
  overscroll-behavior-x: contain;
}
.reels-track::-webkit-scrollbar,
.film-track::-webkit-scrollbar {
  display: none;
}
.reel-card {
  position: relative;
  flex: 0 0 clamp(190px, 22vw, 260px);
  aspect-ratio: 9/16;
  overflow: hidden;
  border-radius: 999px 999px 20px 20px;
  background: #151c1d;
  scroll-snap-align: start;
  border: 1px solid #ffffff17;
}
.reel-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  opacity: 0.82;
  transition:
    transform 0.8s ease,
    opacity 0.5s ease;
}
.reel-card:hover video {
  transform: scale(1.04);
  opacity: 1;
}
.reel-card:after {
  content: "";
  position: absolute;
  inset: 40% 0 0;
  background: linear-gradient(transparent, #101515d9);
}
.reel-card > div {
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 20px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reel-card span {
  font: var(--font-ui) var(--font-sans);
  letter-spacing: 0.18em;
  color: var(--gold);
}
.reel-card strong {
  font: 500 var(--font-15) var(--font-sans);
  color: var(--cream);
  letter-spacing: 0.02em;
}
.film-strip {
  background: var(--sand);
  overflow: hidden;
}
.film-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 420px);
  align-items: end;
  gap: 40px;
  margin-bottom: 38px;
}
.film-heading > p {
  margin: 0 0 6px;
  color: var(--muted);
}
.film-card {
  position: relative;
  flex: 0 0 clamp(250px, 30vw, 380px);
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 4px;
  background: #c8b69a;
  scroll-snap-align: start;
}
.film-card-wide {
  flex-basis: clamp(360px, 48vw, 640px);
  aspect-ratio: 16/9;
}
.film-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.8);
  transition:
    transform 0.8s ease,
    filter 0.5s ease;
}
.film-card:hover video {
  transform: scale(1.035);
  filter: saturate(1);
}
.film-card span {
  position: absolute;
  left: 20px;
  bottom: 18px;
  color: #fff;
  font: 500 var(--font-contact) var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 14px #000;
}
.film-card:after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(transparent, #0008);
  pointer-events: none;
}
/* The Anahata Film: retain every video's original frame and aspect ratio. */
.film-strip .film-card {
  flex: 0 0 clamp(360px, 48vw, 640px);
  height: auto;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: #172d27;
}
.film-strip .film-card video {
  height: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
}
.film-strip .film-card:hover video {
  transform: none;
  filter: saturate(1);
}
.film-strip .film-card::after {
  display: none;
}
.film-carousel-controls {
  justify-content: flex-end;
  margin: -14px 0 18px;
}
/* Narrow carousel and project-pointer layout. */
@media (max-width: 700px) {
  .reels-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }
  .carousel-controls {
    align-self: flex-end;
  }
  .film-heading {
    display: block;
  }
  .film-heading > p {
    margin-top: 18px;
  }
  .reel-card {
    flex-basis: 185px;
  }
  .film-card-wide {
    flex-basis: 82vw;
  }
  .film-card {
    flex-basis: 68vw;
  }
}
/* Persistent desktop enquiry pill. It is hidden on small screens. */
.floating-enquire {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 18px 13px 20px;
  border: 1px solid #d5b97780;
  border-radius: 99px;
  background: #102b22ee;
  color: var(--cream);
  box-shadow: 0 12px 35px #0003;
  backdrop-filter: blur(12px);
  transition:
    transform 0.35s var(--ease),
    background 0.35s ease;
}
.floating-enquire span {
  font: var(--font-label) var(--font-sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d5b977;
}
.floating-enquire strong {
  font: 600 var(--font-detail) var(--font-sans);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.floating-enquire:hover {
  transform: translateY(-4px);
  background: var(--terracotta);
}
@media (max-width: 700px) {
  .floating-enquire {
    display: none;
  }
}
/* Accessibility: users who prefer less motion get a calm, static page. */
@media (prefers-reduced-motion: reduce) {
  .floating-enquire {
    transition: none;
  }
}
/* The contact agreement stays selected/hidden by design per project brief. */
.consent {
  display: none !important;
}
.brand img,
.footer-brand img {
  filter: none !important;
}
/* --------------------------------------------------------------------------
   FINAL LAYOUT OVERRIDES
   These rules keep the approved section sequence and spacing consistent.
   -------------------------------------------------------------------------- */
.intro-grid {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.95fr);
  gap: 64px 76px;
}
.intro-grid > .section-kicker {
  grid-column: 1/-1;
}
.intro-copy {
  padding-top: 0;
}
.intro-image {
  margin-top: 0;
}
@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro-grid > .section-kicker {
    grid-column: auto;
  }
  .intro-copy {
    padding-top: 0;
  }
  .intro-image {
    margin-top: 0;
  }
}
/* Final approved LP sequence */
main > section:nth-child(1),
main > section:nth-child(3) {
  order: 1;
}
main > section:nth-child(2) {
  order: 2;
}
main > .key-pointers {
  order: 3;
}
main > section:nth-child(11) {
  order: 4;
}
main > section:nth-child(4) {
  order: 5;
}
main > section:nth-child(5) {
  order: 6;
}
main > section:nth-child(7) {
  order: 7;
}
main > section:nth-child(6) {
  order: 8;
}
main > section:nth-child(8) {
  order: 9;
}
main > section:nth-child(12) {
  order: 10;
}
main > section:nth-child(9) {
  order: 11;
}
main > section:nth-child(10) {
  order: 12;
}
/* Final visual rhythm and explicit section sequence */
main > .hero {
  order: 1 !important;
}
main > .facts-band {
  order: 2 !important;
}
main > .intro {
  order: 3 !important;
}
main > .key-pointers {
  order: 4 !important;
}
main > .reels {
  order: 5 !important;
}
main > .arrival {
  order: 6 !important;
}
main > .masterplan {
  order: 7 !important;
}
main > .villas {
  order: 8 !important;
}
main > .club {
  order: 9 !important;
}
main > .progress {
  order: 10 !important;
}
main > .film-strip {
  order: 11 !important;
}
main > .location {
  order: 12 !important;
}
main > .project-gallery {
  order: 13 !important;
}
main > .enquire {
  order: 14 !important;
}
.section-pad {
  padding: clamp(76px, 8vw, 108px) 0;
}
.hero {
  height: min(820px, 100svh);
}
.hero-video {
  opacity: 0.9;
  filter: saturate(0.92) contrast(1.03);
}
.hero-shade {
  background:
    linear-gradient(90deg, #102b23e8 0%, #102b2390 43%, #102b2328 78%),
    linear-gradient(0deg, #102b23b8 0%, transparent 48%, #102b236e 100%);
}
.intro-grid {
  gap: 42px 68px;
}
.intro-image {
  height: 480px;
}
.arrival-images {
  margin-top: 48px;
}
.master-grid,
.location-grid,
.enquire-grid {
  gap: clamp(44px, 6vw, 76px);
}
.villa-grid {
  margin-top: 48px;
}
.club-heading {
  margin-bottom: 38px;
}
.progress-grid {
  margin-top: 42px;
}
.reels-heading,
.film-heading {
  margin-bottom: 32px;
}
.key-pointers .section-heading {
  margin-bottom: 0;
}
.pointer-grid {
  margin-top: 30px;
}
@media (max-width: 900px) {
  .section-pad {
    padding: 72px 0;
  }
  .hero {
    height: auto;
    min-height: 720px;
  }
  .intro-image {
    height: 400px;
  }
  .arrival-images,
  .villa-grid,
  .progress-grid {
    margin-top: 34px;
  }
}
@media (max-width: 540px) {
  .section-pad {
    padding: 60px 0;
  }
  .hero {
    min-height: 690px;
  }
  .intro-image {
    height: 340px;
  }
}
.section-cta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}
.film-strip .section-cta {
  margin-top: 22px;
}
@media (max-width: 540px) {
  .section-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .section-cta .button {
    width: 100%;
  }
}
.facts-band {
  padding: 0;
  border-top: 1px solid #ffffff16;
  border-bottom: 1px solid #ffffff16;
}
.facts-grid {
  min-height: 136px;
  align-items: stretch;
}
.facts-grid > div {
  min-height: 136px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 26px 30px;
}
.facts-grid strong {
  font-size: var(--font-facts-title);
  white-space: nowrap;
}
.facts-grid span {
  max-width: 110px;
}
.facts-grid > div:hover {
  background: #ffffff08;
}
@media (max-width: 900px) {
  .facts-grid {
    min-height: 0;
  }
  .facts-grid > div {
    min-height: 108px;
    padding: 22px 14px;
  }
  .facts-grid strong {
    font-size: var(--font-36);
  }
}
@media (max-width: 540px) {
  .facts-band {
    padding: 0;
  }
  .facts-grid {
    gap: 0;
  }
  .facts-grid > div {
    min-height: 94px;
    padding: 18px 8px;
    gap: 8px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }
  .facts-grid strong {
    font-size: var(--font-27);
  }
  .facts-grid span {
    max-width: none;
    font-size: var(--font-micro);
  }
}
/* CRO sequence: proof first, then desire, detail, trust and enquiry close. */
main {
  display: flex;
  flex-direction: column;
}
main > section:nth-child(1) {
  order: 1;
}
main > section:nth-child(3) {
  order: 2;
}
main > section:nth-child(2) {
  order: 3;
}
main > section:nth-child(4) {
  order: 4;
}
main > section:nth-child(5) {
  order: 5;
}
main > section:nth-child(7) {
  order: 6;
}
main > section:nth-child(6) {
  order: 7;
}
main > section:nth-child(8) {
  order: 8;
}
main > section:nth-child(11) {
  order: 9;
}
main > section:nth-child(12) {
  order: 10;
}
main > section:nth-child(9) {
  order: 11;
}
main > section:nth-child(10) {
  order: 12;
}
/* Practical project highlights: plot size, possession, ROI and amenities. */
.key-pointers {
  order: 3;
  background: var(--cream);
}
.pointer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #183c3125;
  margin-top: 38px;
}
.pointer-grid article {
  min-height: 128px;
  padding: 24px;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pointer-grid strong {
  font: 500 var(--font-pointer-title)/1 var(--serif);
  color: var(--forest);
}
.pointer-grid span {
  margin-top: 7px;
  color: #68746b;
  font-size: var(--font-address-pointer-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.key-pointers .fine-print {
  margin-top: 22px;
}
@media (max-width: 700px) {
  .visual-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 250px 190px;
    gap: 10px;
    margin-top: 34px;
  }
  .visual-card-large {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .pointer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pointer-grid article {
    min-height: 105px;
    padding: 18px;
  }
  .pointer-grid strong {
    font-size: var(--font-27);
  }
}

/* Arrive Differently: self-contained editorial mosaic. Fixed grid tracks keep it clear of the next section. */
.arrival-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  align-items: start;
  gap: clamp(34px, 5vw, 82px);
}
.arrival-layout .section-heading {
  display: block;
  margin: 0;
}
.arrival-layout .section-heading > p {
  max-width: 360px;
  margin: 26px 0 0;
}
.arrival-layout .section-heading h2 {
  margin: 24px 0 0;
}
.arrival-images {
  display: grid;
  grid-template-columns: minmax(0, 1.13fr) minmax(0, 0.87fr);
  grid-template-rows: repeat(2, minmax(0, 264px));
  gap: 14px;
  height: auto;
  margin: 0;
}
.arrival-images figure {
  margin: 0;
}
.arrival-images .tall {
  grid-row: 1 / -1;
  height: auto;
}
.arrival-side-grid {
  display: grid;
  grid-column: 2;
  grid-row: 1 / -1;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.arrival-side-grid .arrival-small {
  height: auto;
}
@media (max-width: 900px) {
  .arrival-layout {
    grid-template-columns: 1fr;
  }
  .arrival-layout .section-heading > p {
    max-width: 520px;
  }
  .arrival-images {
    grid-template-rows: repeat(2, minmax(0, 240px));
  }
}
@media (max-width: 540px) {
  .arrival-images {
    grid-template-columns: 1fr;
    grid-template-rows: 300px auto;
    gap: 10px;
  }
  .arrival-images .tall {
    grid-row: auto;
  }
  .arrival-side-grid {
    grid-column: auto;
    grid-row: auto;
    grid-template-rows: 145px 165px;
    gap: 10px;
  }
}

/* Project Gallery: mixed 3D renders and drone films in one endlessly browseable ribbon. */
.project-gallery {
  background: var(--deep);
  color: var(--white);
  overflow: hidden;
}
.gallery-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 34px;
}
.project-gallery .section-kicker {
  color: var(--gold);
}
.project-gallery h2 {
  margin: 22px 0 0;
  color: var(--white);
}
.project-gallery .carousel-button {
  border-color: #ffffff45;
  color: var(--cream);
}
.project-gallery-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 4px max(20px, calc((100vw - 1180px) / 2)) 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
}
.project-gallery-track::-webkit-scrollbar {
  display: none;
}
.project-gallery-card {
  position: relative;
  flex: 0 0 clamp(250px, 32vw, 480px);
  aspect-ratio: 4 / 3;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #ffffff1f;
  padding: 0;
  background: #163229;
  color: var(--white);
  cursor: zoom-in;
  scroll-snap-align: start;
  text-align: left;
}
.project-gallery-card img,
.project-gallery-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), filter 400ms ease;
}
.project-gallery-card:hover img,
.project-gallery-card:hover video,
.project-gallery-card:focus-visible img,
.project-gallery-card:focus-visible video {
  transform: scale(1.04);
  filter: saturate(1.08);
}
.project-gallery-card::after {
  content: "";
  position: absolute;
  inset: 48% 0 0;
  background: linear-gradient(transparent, #04150ecc);
  pointer-events: none;
}
.project-gallery-card span {
  position: absolute;
  z-index: 1;
  bottom: 17px;
  left: 18px;
  right: 18px;
  font: 700 var(--font-ui) var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px #000;
}
.project-gallery-card span b {
  margin-left: 7px;
  color: var(--gold);
  font-size: var(--font-body);
}
@media (max-width: 700px) {
  .gallery-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 28px;
  }
  .gallery-heading .carousel-controls {
    align-self: flex-end;
  }
  .project-gallery-track {
    gap: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }
  .project-gallery-card {
    flex-basis: 78vw;
  }
  .film-strip .film-card {
    flex-basis: 82vw;
  }
}

/* The Anahata Story render is intentionally shown in full, without a fixed-height crop. */
.intro-image {
  height: auto;
  background: #e8e4da;
}
.intro-image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.intro-image:hover img {
  transform: none;
}
/* Two-image Story composition: main aerial remains complete, detail image fills the former empty space. */
.intro-visuals {
  display: grid;
  align-content: start;
  gap: 14px;
}
.intro-visuals .intro-image {
  margin: 0;
}
.intro-image-secondary {
  height: 140px;
  margin: 0;
}
.intro-image-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 900px) {
  .intro-image-secondary {
    height: 180px;
  }
}

/* --------------------------------------------------------------------------
   FINAL PHONE SCALE
   Smaller typography and a shorter hero keep the page composed on phones.
   The hero video fills the complete hero background on every phone.
   -------------------------------------------------------------------------- */
@media (max-width: 700px) {
  :root {
    --font-size-hero-label: 14px;
    --font-size-section-label: 12px;
    --font-9: 8px;
    --font-10: 9px;
    --font-11: 10px;
    --font-12: 11px;
    --font-13: 12px;
    --font-14: 13px;
    --font-15: 14px;
    --font-16: 14px;
    --font-18: 16px;
    --font-20: 18px;
    --font-23: 20px;
    --font-24: 21px;
    --font-25: 22px;
    --font-27: 24px;
    --font-34: 29px;
    --font-36: 31px;
    --font-max: 34px;
  }

  .hero {
    height: 70svh;
    min-height: 500px;
    max-height: 620px;
  }

  .hero-video {
    object-fit: cover;
    object-position: center;
    animation: none;
    background: var(--deep);
  }

  .hero-content {
    padding-top: 64px;
  }

  .hero-copy {
    margin: 18px 0 20px;
    line-height: 1.55;
  }
}
