/* ===========================================================
   Encanto by Lansum & MK — Base Styles
   =========================================================== */

@font-face {
  font-family: 'Ergon';
  src: url('../fonts/Ergon-Regular.otf') format('opentype');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Satoshi Bold';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-maroon: #8D1738;
  --color-maroon-dark: #6E1029;
  --color-cream: #F3E9DB;
  --color-blue: #567D96;
  --color-light-blue: #B3D7EB;
  --color-brown: #A65F49;
  --color-orange: #EF7325;
  --color-white: #FFFFFF;
  --color-text: #2B2320;

  --font-display: 'Ergon', 'Playfair Display', 'Georgia', serif;
  --font-body: 'Satoshi', 'Poppins', 'Helvetica Neue', Arial, sans-serif;

  --container-width: 1728px;
  --header-height: 100px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 60px;
}

/* ===========================================================
   Header
   =========================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background 0.4s ease, height 0.4s ease, box-shadow 0.4s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  height: 84px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(6px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header__logo {
  position: relative;
  display: inline-block;
}

.site-header__logo img {
  height: 56px;
  width: auto;
}

.site-header__logo-img--original {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-header__logo-img--white {
  opacity: 1;
  transition: opacity 0.4s ease;
}

.site-header.is-scrolled .site-header__logo-img--original {
  opacity: 1;
}

.site-header.is-scrolled .site-header__logo-img--white {
  opacity: 0;
}

.site-header--inner .site-header__logo-img--original {
  opacity: 1;
}

.site-header--inner .site-header__logo-img--white {
  opacity: 0;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 48px;
}

.site-header__nav a {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--color-white);
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color 0.4s ease;
}

.site-header.is-scrolled .site-header__nav a {
  color: var(--color-maroon);
}

.site-header--inner .site-header__nav a {
  color: var(--color-maroon);
}

.site-header__nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.3s ease;
}

.site-header__nav a:hover::after,
.site-header__nav a.is-active::after {
  width: 100%;
}

.site-header__nav-btn {
  padding: 10px 22px !important;
  background: var(--color-maroon);
  color: var(--color-white) !important;
  border-radius: 2px;
  font-size: 0.95rem !important;
  transition: background 0.3s ease, transform 0.3s ease;
}

.site-header__nav-btn:hover {
  background: var(--color-maroon-dark);
  transform: translateY(-1px);
}

.site-header__nav-btn::after {
  display: none;
}

.site-header.is-scrolled .site-header__nav-btn,
.site-header--inner .site-header__nav-btn {
  color: var(--color-white) !important;
}

.site-header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.site-header__toggle span {
  width: 28px;
  height: 2px;
  background: var(--color-maroon);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header__toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===========================================================
   Hero
   =========================================================== */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__video-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__video-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero__video-blur {
  display: none;
}

.hero__scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.35);
}

.hero__scroll-cue span {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
}

/* ===========================================================
   Sky Crown
   =========================================================== */

.sky-crown {
  position: relative;
  padding: 90px 0 0;
  background: var(--color-white);
}

.sky-crown__banner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.sky-crown__banner img {
  width: 100%;
  height: clamp(320px, 42vw, 620px);
  object-fit: cover;
}

.sky-crown__banner-text {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 60px 56px;
  background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0) 100%);
  color: var(--color-white);
}

.sky-crown__banner-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 14px;
}

.sky-crown__banner-text p {
  max-width: 480px;
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.92;
}

.sky-crown__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin: 60px 0 100px;
}

.sky-crown__card img {
  width: 100%;
  aspect-ratio: 393 / 320;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 24px;
}

.sky-crown__card h3 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 12px;
}

.sky-crown__card p {
  font-size: 0.92rem;
  color: var(--color-text);
  line-height: 1.6;
}

.section-divider {
  display: block;
  width: 100%;
  height: auto;
}

/* ===========================================================
   5-Layered Landscape Design
   =========================================================== */

.landscape {
  position: relative;
  min-height: 100vh;
  background: var(--color-maroon);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.landscape__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.landscape > .section-divider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.landscape__diagram {
  flex: 7 1 0%;
  min-width: 320px;
}

.landscape__wheel {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}

.landscape__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.landscape__btn {
  cursor: pointer;
  transform-box: fill-box;
  transform-origin: center;
  transition: transform 0.35s ease;
  outline: none;
}

.landscape__btn:hover {
  transform: scale(1.045);
}

.landscape__btn.is-active {
  transform: scale(1.07);
}

.landscape__segment {
  fill: var(--color-maroon-dark);
  stroke: var(--color-cream);
  stroke-width: 2;
  stroke-opacity: 0.35;
  transition: fill 0.35s ease;
}

.landscape__btn.is-active .landscape__segment {
  fill: var(--color-cream);
}

.landscape__label {
  font-family: var(--font-display);
  font-size: 21px;
  fill: var(--color-cream);
  letter-spacing: 0.02em;
  transition: fill 0.35s ease;
  pointer-events: none;
}

.landscape__btn.is-active .landscape__label {
  fill: var(--color-maroon);
}

.landscape__btn[data-level="podium"] .landscape__label {
  letter-spacing: -0.04em;
}

.landscape__center {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 66%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-cream);
}

.landscape__center img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}

.landscape__center img.is-fading {
  opacity: 0;
}

.landscape__content {
  flex: 5 1 0%;
  min-width: 280px;
  color: var(--color-white);
}

.landscape__content h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.25;
  margin-bottom: 28px;
}

.landscape__amenities-line {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  line-height: 1.3;
  color: var(--color-cream);
  max-width: 520px;
  margin-bottom: 0;
}

/* ===========================================================
   Shared button
   =========================================================== */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: var(--btn-font-weight, 600);
  font-size: var(--btn-font-size, 1rem);
  letter-spacing: 0.03em;
  padding: var(--btn-padding, 18px 42px);
  margin: var(--btn-margin, 0);
  background: var(--btn-bg, var(--color-maroon));
  color: var(--btn-color, var(--color-white));
  border: none;
  border-radius: var(--btn-radius, 2px);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: var(--btn-bg-hover, var(--color-maroon-dark));
  transform: translateY(-2px);
}

/* ===========================================================
   Clubhouse
   =========================================================== */

.clubhouse {
  position: relative;
  padding: 70px 0;
  background: var(--color-white);
}

.clubhouse__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 32px;
}

.clubhouse__media {
  flex: 7 1 400px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.clubhouse__media-main {
  border-radius: 4px;
  overflow: hidden;
}

.clubhouse__media-main img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  display: block;
}

.clubhouse__media-row {
  display: flex;
  gap: 24px;
}

.clubhouse__media-row img {
  flex: 1 1 0%;
  width: 48%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

.clubhouse__panel {
  flex: 5 1 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-maroon);
  color: var(--color-white);
  padding: 56px 48px;
  border-radius: 4px;
}

.clubhouse__panel h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 4.0vw, 3.5rem);
  line-height: 1.25;
  margin-bottom: 24px;
}

.clubhouse__panel p {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.88);
}

/* ===========================================================
   A Grand Arrival Experience
   =========================================================== */

.arrival {
  background: var(--color-cream);
  padding: 90px 0 0;
  text-align: center;
}

.arrival h2 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.arrival__subtext {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.6;
}

.arrival__image {
  width: 100%;
  height: clamp(320px, 40vw, 620px);
  object-fit: cover;
  margin-top: 56px;
}

/* ===========================================================
   See Encanto From Every Angle
   =========================================================== */

.gallery {
  background: var(--color-white);
  padding: 90px 0 70px;
  text-align: center;
}

.gallery h2 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.gallery__subtext {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.6;
}

.gallery__grid {
  display: flex;
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.gallery__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.gallery__item {
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 606 / 243;
}

.gallery__item--tall {
  aspect-ratio: 603 / 510;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item span {
  position: absolute;
  left: 20px;
  bottom: 16px;
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  z-index: 1;
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgb(0 0 0 / 65%) 0%, rgb(255 255 255 / 0%) 45%);
}

/* ===========================================================
   Crafted For Elevated Living
   =========================================================== */

.floor-plans {
  background: var(--color-white);
  padding: 90px 0;
  text-align: center;
}

.floor-plans h2 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.floor-plans__subtext {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.6;
}

.floor-plans__hint {
  margin-top: 32px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-maroon);
}

.floor-plans__map {
  margin-top: 12px;
  overflow-x: auto;
}

.floor-plans__map--second {
  margin-top: 56px;
}

.floor-plans__map img {
  width: 100%;
  min-width: 900px;
}

.floor-plans__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 56px;
}

.floor-plans__tower {
  flex: 1 1 400px;
  border: 1px solid rgba(141, 23, 56, 0.12);
  border-radius: 4px;
  overflow: hidden;
}

.floor-plans__tower img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===========================================================
   Page Banner (About / Floor Plans / interior pages)
   =========================================================== */

.page-banner {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  background: #1c211f center / cover no-repeat;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 50%, rgba(0,0,0,0.6) 100%);
}

.page-banner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.page-banner--floor-plans {
  background-image: url('../img/hyderabad,s first floating sky crown.jpg');
}

.page-banner--contact {
  background-image: url('../img/A Grand Arrival Experience.jpg');
}

.page-banner--gallery {
  background-image: url('../img/gallery/ENC_EXT_LT_INFINITY POOL_HQ.png');
}

.page-banner--blogs {
  background-image: url('../img/A Grand Arrival Experience.jpg');
}

.page-banner__inner {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  text-align: center;
  color: var(--color-white);
}

.page-banner__inner h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.2;
}

.page-banner__inner p {
  max-width: 780px;
  margin: 24px auto 0;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
}

.floor-plans__btn {
  margin-top: 48px;
}

.page-banner__btn {
  margin-top: 32px;
}

/* ===========================================================
   Discover Encanto In Detail (Brochure)
   =========================================================== */

.brochure {
  background: var(--color-cream);
  padding: 90px 0;
  text-align: center;
}

.brochure h2 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.brochure__subtext {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.6;
}

.brochure__btn {
  margin-top: 36px;
}

/* ===========================================================
   Connected To Everything That Matters
   =========================================================== */

.location {
  background: var(--color-white);
  padding: 90px 0;
}

.location__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
}

.location__content {
  flex: 1 1 360px;
}

.location__content h2 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.2vw, 2.7rem);
  line-height: 1.25;
  margin-bottom: 24px;
}

.location__content p {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.75;
}

.distance-map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 24px;
}

.distance-map .column {
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.distance-map .column section h3 {
  margin: 0 0 14px;
  font-size: 24px;
  font-weight: 400;
}

.distance-map .column section ul {
  list-style: disc;
}

.distance-map .column section ul li {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.25;
}

@media (max-width: 700px) {
  .distance-map {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.location__map {
  flex: 1 1 360px;
}

.location__map img,
.location__map iframe {
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 4 / 3;
  margin: 0 auto;
  display: block;
  border-radius: 4px;
}

/* ===========================================================
   Where Your Next Chapter Rises
   =========================================================== */

.cta {
  position: relative;
  background: var(--color-cream);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 90px 0;
  text-align: center;
}

.cta--on-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.cta--on-dark .container {
  position: relative;
  z-index: 1;
}

.cta--on-dark h2,
.cta--on-dark .cta__subtext {
  color: var(--color-white);
}

.cta h2 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.cta__subtext {
  max-width: 620px;
  margin: 18px auto 0;
  font-size: 1rem;
  line-height: 1.6;
}

.cta__btn {
  margin-top: 36px;
}

/* ===========================================================
   Custom Sections (admin-built)
   =========================================================== */

.about-custom-section {
  padding: 90px 0;
  background: var(--color-white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}

.about-custom-section--on-dark {
  color: var(--color-white);
}

.about-custom-section--on-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-custom-section__inner {
  position: relative;
  z-index: 1;
}

.about-custom-section__inner.container {
  text-align: center;
}

.about-custom-section:not(.about-custom-section--full) .about-custom-section__inner:not(.container) {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 60px;
}

.about-custom-section__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

.about-custom-section--cols-2 .about-custom-section__grid {
  grid-template-columns: repeat(2, 1fr);
}

.about-custom-section--cols-3 .about-custom-section__grid {
  grid-template-columns: repeat(3, 1fr);
}

.about-custom-section--cols-4 .about-custom-section__grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-custom-section__col {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.about-custom-section--full .about-custom-section__col,
.about-custom-section--container .about-custom-section__col {
  text-align: center;
  align-items: center;
}

.about-custom-section__icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: 16px;
}

.about-custom-section__col h2 {
  font-family: var(--font-display);
  font-weight: var(--title-font-weight, 600);
  font-size: var(--title-font-size, clamp(1.4rem, 2.6vw, 2rem));
  line-height: 1.25;
  margin-bottom: 14px;
  color: inherit;
}

.about-custom-section:not(.about-custom-section--on-dark) .about-custom-section__col h2 {
  color: var(--title-color, var(--color-maroon));
}

.about-custom-section__col p {
  font-size: var(--desc-font-size, 1rem);
  font-weight: var(--desc-font-weight, 400);
  line-height: 1.7;
  opacity: 0.92;
}

.about-custom-section--on-dark .about-custom-section__col p {
  color: inherit;
}

.about-custom-section:not(.about-custom-section--on-dark) .about-custom-section__col p {
  color: var(--desc-color, inherit);
}

.about-custom-section__image {
  width: 100%;
  border-radius: 4px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
  margin-top: 16px;
}

.about-custom-section__btn {
  margin-top: 20px;
}

@media (max-width: 768px) {
  .about-custom-section--cols-2 .about-custom-section__grid,
  .about-custom-section--cols-3 .about-custom-section__grid,
  .about-custom-section--cols-4 .about-custom-section__grid {
    grid-template-columns: 1fr;
  }
  .about-custom-section--cols-2 .about-custom-section__col,
  .about-custom-section--cols-3 .about-custom-section__col,
  .about-custom-section--cols-4 .about-custom-section__col {
    text-align: center;
    align-items: center;
  }
}

/* ===========================================================
   About — Hero
   =========================================================== */

.about-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #1c211f url('../img/About_Banner.png') center / cover no-repeat;
}

.about-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 260px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

.about-hero__inner {
  position: relative;
  z-index: 1;
  padding-top: var(--header-height);
  text-align: center;
  color: var(--color-white);
}

.about-hero__inner h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.15;
}

.about-hero__inner p {
  max-width: 760px;
  margin: 24px auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero__btn {
  margin-top: 36px;
}

/* ===========================================================
   About — Built On Experience
   =========================================================== */

.about-intro {
  background: var(--color-white);
  padding: 100px 0;
  text-align: center;
}

.about-intro h2 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  line-height: 1.3;
}

.about-intro p {
  max-width: 1000px;
  margin: 28px auto 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text);
}

.about-intro__btn {
  margin-top: 32px;
}

/* ===========================================================
   About — Lansum & MK Realty
   =========================================================== */

.about-legacies {
  background: var(--color-maroon);
  padding: 90px 0;
  color: var(--color-white);
}

.about-legacies__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.about-legacies__col {
  flex: 1 1 320px;
}

.about-legacies__logo {
  height: 25px;
  margin-bottom: 20px;
}

.about-legacies__eyebrow {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
}

.about-legacies__col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  line-height: 1.3;
  color: var(--color-white);
  margin-bottom: 20px;
}

.about-legacies__col p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  text-align: justify;
}

.about-legacies__col p + p {
  margin-top: 20px;
}

.about-legacies__tagline {
  margin-top: 18px;
  font-weight: 600;
  color: var(--color-white) !important;
}

/* ===========================================================
   About — The Vision, Realised
   =========================================================== */

.about-vision {
  position: relative;
  background: var(--color-white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
  text-align: center;
}

.about-vision--on-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.about-vision--on-dark .container {
  position: relative;
  z-index: 1;
}

.about-vision--on-dark h2,
.about-vision--on-dark p,
.about-vision--on-dark .about-vision__tagline {
  color: var(--color-white);
}

.about-vision h2 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.about-vision p {
  max-width: auto;
  margin: 28px auto 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--color-text);
}

.about-vision__tagline {
  margin-top: 24px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-maroon);
}

.about-vision__btn {
  margin-top: 32px;
}

/* ===========================================================
   Contact
   =========================================================== */

.contact {
  background: var(--color-white);
  padding: 90px 0 0;
}

.contact__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
}

.contact__details {
  flex: 1 1 320px;
}

.contact__details h2,
.contact__form h2 {
  font-family: var(--font-display);
  color: var(--color-maroon);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 14px;
}

.contact__lead {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text);
  margin-bottom: 36px;
}

.contact__item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.contact__item svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--color-maroon);
}

.contact__item h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--color-maroon);
  margin-bottom: 4px;
}

.contact__item p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--color-text);
}

.contact__form {
  flex: 1 1 380px;
  background: var(--color-cream);
  padding: 40px;
  border-radius: 4px;
}

.contact__row {
  display: flex;
  gap: 20px;
}

.contact__row .contact__field {
  flex: 1 1 0;
}

.contact__field {
  margin-bottom: 20px;
}

.contact__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 8px;
}

.contact__field input,
.contact__field select,
.contact__field textarea {
  width: 100%;
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(141, 23, 56, 0.2);
  border-radius: 2px;
  resize: vertical;
}

.contact__field input:focus,
.contact__field select:focus,
.contact__field textarea:focus {
  outline: none;
  border-color: var(--color-maroon);
}

.contact__submit {
  width: 100%;
}

.contact__note {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--color-maroon);
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
}

.contact__map {
  margin-top: 80px;
}

.contact__map iframe {
  width: 100%;
  height: clamp(280px, 32vw, 460px);
  display: block;
  border-radius: 4px;
}

/* ===========================================================
   Digital Form
   =========================================================== */

.digital-form-page {
  background: var(--color-cream);
  padding: calc(var(--header-height) + 60px) 0 90px;
}

.digital-form__tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
  max-width: 640px;
  margin: 0 auto 30px;
}

.digital-form__tab {
  flex: 1 1 140px;
  padding: 16px 20px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-white);
  background: var(--color-text);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.digital-form__tab.is-active {
  background: var(--color-maroon);
}

.digital-form__panel {
  display: none;
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 36px;
  border-radius: 6px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
}

.digital-form__panel.is-active {
  display: block;
}

.digital-form__req {
  color: var(--color-maroon);
}

.digital-form__checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 4px;
}

.digital-form__checklist label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  cursor: pointer;
}

.digital-form__checklist input {
  width: auto;
}

.digital-form__submit {
  width: 100%;
  margin-top: 6px;
}

.digital-form__msg {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--color-maroon);
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
}

@media (max-width: 640px) {
  .digital-form__panel {
    padding: 26px 20px;
  }
}

/* ===========================================================
   Footer
   =========================================================== */

.site-footer {
  background: var(--color-maroon);
  padding: 70px 0 50px;
  color: var(--color-white);
}

.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.site-footer__copyright {
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.site-footer__brand {
  flex: 2 1 320px;
}

.site-footer__brand img {
  height: 44px;
  margin-bottom: 20px;
}

.site-footer__brand p {
  max-width: 420px;
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer__experience {
  margin-bottom: 16px;
  color: var(--color-cream);
}

.site-footer__experience strong {
  color: var(--color-white);
  font-weight: 600;
}

.site-footer__rera {
  padding-top: 15px;
  font-family: 'Satoshi Bold', var(--font-body);
  font-weight: 700;
  color: var(--color-white);
}
.site-footer__links,
.site-footer__contact {
  flex: 1 1 200px;
}

.site-footer__contact {
  flex: 1.6 1 280px;
}

.site-footer h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 20px;
}

.site-footer__links a {
  display: block;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 14px;
  transition: color 0.25s ease;
}

.site-footer__links a:hover {
  color: var(--color-white);
}

.site-footer__contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 16px;
}

.site-footer__contact svg {
  flex-shrink: 0;
  margin-top: 3px;
}

.site-footer__social {
  flex: 1 1 160px;
}

.site-footer__social-links {
  display: flex;
  gap: 12px;
}

.site-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-footer__social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-white);
}

.contact__social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.contact__social .site-footer__social-link {
  border-color: var(--color-maroon);
  color: var(--color-maroon);
}

.contact__social .site-footer__social-link:hover {
  background: var(--color-maroon);
  color: var(--color-white);
}

/* ===========================================================
   Responsive
   =========================================================== */

@media (max-width: 960px) {
  .container {
    padding: 0 24px;
  }

  .hero:not(.hero--has-mobile-video) .hero__video-bg video.hero__video-blur {
    display: block;
    object-fit: cover;
    filter: blur(30px) brightness(0.55);
    transform: translate(-50%, -50%) scale(1.2);
  }

  .hero:not(.hero--has-mobile-video) .hero__video-bg video.hero__video-main {
    object-fit: contain;
  }

  .page-banner {
    min-height: 85vh;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .page-banner__inner {
    padding-top: calc(var(--header-height) + 40px);
  }

  .about-hero {
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .about-hero__inner {
    padding-top: calc(var(--header-height) + 40px);
  }

  .site-header__nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--color-cream);
    flex-direction: column;
    justify-content: center;
    gap: 36px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .site-header__nav.is-open {
    transform: translateX(0);
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  }

  .site-header__nav a {
    color: var(--color-maroon);
  }

  .site-header__nav-btn {
    color: var(--color-white) !important;
  }

  .site-header__toggle {
    display: flex;
  }

  .sky-crown__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .sky-crown__banner-text {
    padding: 36px 32px;
  }

  .landscape__inner {
    flex-direction: column;
    text-align: center;
  }

  .landscape__content p {
    margin: 0 auto;
  }

  .about-legacies__inner {
    flex-direction: column;
    text-align: center;
  }

  .about-legacies__logo {
    margin-left: auto;
    margin-right: auto;
  }

  .about-legacies__col p {
    margin: 0 auto;
  }

  .contact__row {
    flex-direction: column;
    gap: 0;
  }

  .contact__form {
    padding: 28px;
  }

  .clubhouse__panel {
    padding: 36px 32px;
  }

  .gallery__grid {
    flex-direction: column;
  }

}

@media (max-width: 640px) {
  .sky-crown__grid {
    grid-template-columns: 1fr;
  }
  .landscape__label {
    font-size: 16px;
  }

  .site-footer__contact p {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .hero__content {
    padding: 0 16px;
  }

  .sky-crown__banner-text {
    padding: 24px 20px;
  }

  .clubhouse__panel {
    padding: 24px 20px;
  }

  .clubhouse__media-row {
    gap: 12px;
  }
}

@media (max-width: 420px) {
  .landscape__label {
    font-size: 16px;
  }
  .landscape__center {
    border-width: 3px;
  }
}

/* ===========================================================
   Full Gallery Page
   =========================================================== */

.gallery-full {
  background: var(--color-white);
  padding: 90px 0 70px;
}

.gallery-full__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.gallery-full__item {
  display: block;
  position: relative;
  flex: 1 1 300px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 3px;
  cursor: zoom-in;
}

.gallery-full__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-full__item:hover img {
  transform: scale(1.06);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(10, 8, 8, 0.97);
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 640px) {
  .gallery-full__item {
    flex: 1 1 100%;
  }
}

/* Inline links inside admin-entered body text (About page descriptions, etc.) */
.about-hero p a,
.about-intro p a,
.about-legacies__col p a,
.about-vision p a,
.cta__subtext a,
.about-custom-section__col p a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
}

/* ===========================================================
   Blogs
   =========================================================== */

.blog-listing {
  padding: 90px 0;
  background: var(--color-white);
}

.blog-listing__empty {
  text-align: center;
  color: var(--color-text);
  opacity: 0.7;
  padding: 60px 0;
}

.blog-listing__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  gap: 36px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  color: var(--color-text);
  border-radius: 6px;
  overflow: hidden;
  background: var(--color-cream);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__body {
  padding: 22px 24px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card__meta {
  font-size: 0.8rem;
  color: var(--color-brown);
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.35rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--color-maroon);
}

.blog-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
  margin-bottom: 16px;
  flex: 1;
}

.blog-card__link {
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--color-maroon);
}

.blog-post__banner {
  height: 50vh;
  min-height: 320px;
  background: #1c211f center / cover no-repeat;
  margin-top: var(--header-height);
}

.blog-post__inner {
  max-width: 800px;
  padding: 60px 24px 100px;
}

.blog-post__back {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 24px;
}

.blog-post__meta {
  display: block;
  font-size: 0.85rem;
  color: var(--color-brown);
  margin-bottom: 10px;
}

.blog-post h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.25;
  color: var(--color-maroon);
  margin-bottom: 30px;
}

.blog-post__content p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 22px;
  color: var(--color-text);
}

.blog-post__content p a {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: inherit;
}

.blog-post__content h2,
.blog-post__content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-maroon);
  line-height: 1.3;
  margin: 34px 0 16px;
}

.blog-post__content h2 {
  font-size: 1.6rem;
}

.blog-post__content h3 {
  font-size: 1.3rem;
}

.blog-post__content ul,
.blog-post__content ol {
  margin: 0 0 22px;
  padding-left: 24px;
}

.blog-post__content li {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 8px;
}

.blog-post__content strong {
  font-weight: 700;
}

.blog-post__content em {
  font-style: italic;
}

.blog-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  margin: 10px 0 28px;
  display: block;
}

/* ===========================================================
   Lead Popups (Enquire Now / Download Brochure)
   =========================================================== */

.lead-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(20, 12, 10, 0.55);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lead-popup-overlay.is-open {
  display: flex;
}

.lead-popup {
  position: relative;
  background: var(--color-white);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 8px;
  padding: 40px 32px;
}

.lead-popup h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--color-maroon);
  margin-bottom: 8px;
}

.lead-popup__lead {
  font-size: 0.92rem;
  color: var(--color-text);
  opacity: 0.75;
  margin-bottom: 22px;
}

.lead-popup__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  border: none;
  background: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--color-text);
  cursor: pointer;
}

.lead-popup__field {
  margin-bottom: 16px;
}

.lead-popup__field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-maroon);
  margin-bottom: 8px;
}

.lead-popup__field input,
.lead-popup__field select,
.lead-popup__field textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid rgba(141, 23, 56, 0.2);
  border-radius: 2px;
  resize: vertical;
}

.lead-popup__field input:focus,
.lead-popup__field select:focus,
.lead-popup__field textarea:focus {
  outline: none;
  border-color: var(--color-maroon);
}

.lead-popup__submit {
  width: 100%;
}

.lead-popup__msg {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--color-maroon);
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
}

@media (max-width: 480px) {
  .lead-popup {
    padding: 30px 22px;
  }
}

@media (max-width: 480px){
    .sky-crown__banner img {
        height: clamp(160px, 42vw, 620px);
    }
}