/* ============================================================
   MP Developers — Growth Guaranteed Homes
   Luxury NRI landing page styles
   ============================================================ */

/* ---------- Design tokens ---------- */


:root {
  /* Palette — warm neutrals + premium gold */
  --gold-50: #fbf6ea;
  --gold-100: #f3e6c4;
  --gold-200: #fff;
  --gold-300: #ec7826;
  --gold-400: #ec7826;
  --gold-500: #ec7826;
  --gold-600: #ec7826;

  --ink-900: #343b93;
  --ink-800: #343b93;
  --ink-700: #343b93;
  --ink-600: #343b93;
  --ink-500: #343b93;
  --ink-400: #343b93;
  --ink-300: #343b93;
  --ink-200: #ec7826;
  --ink-100: #e3dccb;
  --ink-50: #f6f1e7;

  --cream: #f7f2e8;
  --cream-2: #efe7d6;
  --paper: #fbf8f1;

  --success: #343b93;
  --warning: #ec7826;
  --error: #ec7826;

  /* Typography */
  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Spacing (8px system) */
  --s-1: 8px;
  --s-2: 16px;
  --s-3: 24px;
  --s-4: 32px;
  --s-5: 48px;
  --s-6: 64px;
  --s-7: 96px;
  --s-8: 128px;

  --radius: 4px;
  --radius-lg: 14px;
  --radius-xl: 24px;

  --container: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --header-h: 84px;
  --shadow-soft: 0 24px 60px -28px rgba(20, 17, 13, 0.45);
  --shadow-card: 0 30px 70px -34px rgba(20, 17, 13, 0.5);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold-400);
  outline-offset: 3px;
}

/* ---------- Layout helpers ---------- */
.container {
  /* width: min(100% - 48px, var(--container)); */
  margin-inline: auto;
}

.section {
  padding-block: var(--s-8);
  position: relative;
}

.section-head {
  max-width: 760px;
  margin: 0 auto var(--s-6);
  text-align: center;
}

.section-head--left {
  margin-inline: 0;
  text-align: left;
}

.section-head__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-500) !important;
  font-weight: 500;
  margin-bottom: var(--s-2);
}

.section-head__eyebrow--light {
  color: var(--gold-200);
}

.section-head__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.15;
  color: var(--ink-900);
  letter-spacing: -0.01em;
}

.section-head__title--light {
  color: var(--ink-50);
}

.section-head__lead {
  margin-top: var(--s-3);
  font-size: 1.06rem;
  color: var(--ink-500);
  line-height: 1.7;
}

.section-head--left .section-head__lead {
  max-width: 560px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  border-radius: 2px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease),
    color 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
  position: relative;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--ink-900);
  box-shadow: 0 14px 34px -16px rgba(181, 132, 42, 0.7);
}

.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-200), var(--gold-400));
  box-shadow: 0 20px 44px -16px rgba(181, 132, 42, 0.85);
}

.btn--ghost {
  background: #343B93;
  color: var(--ink-50);
  border: 1px solid rgba(243, 230, 196, 0.5);
}

.btn--ghost:hover {
  background: rgba(243, 230, 196, 0.1);
  border-color: var(--gold-200);
  color: var(--gold-100);
}

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000000;
  display: grid;
  place-items: center;
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader__inner {
  text-align: center;
}

.loader__mark {
  font-family: var(--font-display);
  font-size: 2.8rem;
  letter-spacing: 0.3em;
  color: var(--gold-300);
  margin-bottom: var(--s-3);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.1s forwards;
}
.loader__mark img{
  width: 90px !important;
  margin: 0 auto;
}

.loader__line {
  width: 220px;
  height: 1px;
  background: rgba(216, 180, 99, 0.25);
  margin: 0 auto var(--s-3);
  overflow: hidden;
}

.loader__line span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--ink-600);
  animation: loadBar 1.6s var(--ease) 0.3s forwards;
}

.loader__word {
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-300);
  opacity: 0;
  font-weight: 500;
  animation: fadeUp 0.9s var(--ease) 0.9s forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  z-index: 1000;
  transition: width 0.1s linear;
}

/* ---------- Header ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 900;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}

.header.is-scrolled {
  background: #343B93;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 10px 30px -20px rgba(0, 0, 0, 0.6);
}
.header.is-scrolled .header__burger {
  filter: invert(0) !important;
}
.success_msg, .error_msg{
  display: none;
  text-align: center;
  color: #c9a03d;
}
.is-invalid{
  border-color:#dc3545 !important;
  box-shadow:0 0 0 .2rem rgba(220,53,69,.15);
}
.header__bar {
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
}



.header__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 10%;
  color: var(--ink-50);
}
.logo{
  width: 90%;
  border-radius: 8px;
}
.header__logo-mark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold-300);
  letter-spacing: 0.04em;
}

.header__logo-text {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}

.header__nav {
  display: flex;
  gap: var(--s-4);
}

.header__nav a {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgb(53 62 147);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}

.is-scrolled .header__nav a,
.header__nav.is-scrolled a {
  color: #fff !important;
}

.header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold-300);
  transition: width 0.4s var(--ease);
}

.header__nav a:hover {
  color: var(--gold-300);
}

.header__nav a:hover::after {
  width: 100%;
}

.header__cta {
padding: 0.7em 1.6em;
    font-size: 0.72rem;
    color: #fff;
    background: var(--gold-600);
    border: 1px solid #fff;
}

.location__grid{
  display:flex;
  gap:60px;
}

.location__content{
  flex:1;
}

.location__media{
  flex:1;
}

.location__media img{
  width:100%;
  display:block;
  border-radius:24px;
}

@media (max-width: 768px){
  .hero__scroll{
    display: none !important;
  }
  .enquiry__form{
    padding: 1.5rem !important;
  }
  #heroCarousel{
    padding-top: 5rem;
  }
  .header__logo{
    width: 28%;
  }
  .header__burger{
    filter: invert(1);
  }
  .growth__pillars{
    padding: 0;
  }
  .project__specs{
    justify-content:space-between;
    gap:16px !important;
    padding: 0;
  }
  .hero{
    height:100vh;
  }
  .hero__title{
    font-size: 4rem !important;
  }
  .location__grid{
    flex-direction:column;
    gap:32px;
  }
}

.header__cta:hover{
  padding: 0.7em 1.6em;
    font-size: 0.72rem;
    color: #e97a27;
    border: 1px solid #e97a27;
}
.header__burger {
  display: none;
  width: 38px;
  height: 38px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.header__burger span {
  width: 22px;
  height: 1.5px;
  background: var(--ink-50);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}

.header__burger.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.header__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 890;
  background: var(--ink-900);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
}

.mobile-menu__nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink-50);
  transition: color 0.3s var(--ease);
}

.mobile-menu__nav a:not(.btn):hover {
  color: var(--gold-200);
}

.mobile-menu__nav .btn {
  margin-top: var(--s-2);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  display: flex;
  background-image: url("https://magicpage-dev.propstory.com/ImageUploads/test/1nnx5eapkmoqwm6xy.webp");
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--ink-50);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: -10% 0;
  z-index: 0;
  will-change: transform;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  opacity: 0;
  animation: heroImgIn 2s var(--ease) 0.2s forwards;
}

@keyframes heroImgIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 13, 0.55) 0%, rgba(20, 17, 13, 0.35) 40%, rgba(20, 17, 13, 0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, var(--container));
  margin-inline: auto;
  padding-top: 7rem;
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-200);
  margin-bottom: var(--s-3);
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 5rem;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink-50);
}

.hero__title-accent {
  color: var(--gold-300);
  font-style: italic;
}

.hero__sub {
  margin-top: var(--s-4);
  max-width: 560px;
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(246, 241, 231, 0.86);
  font-weight: 300;
}

.hero__actions {
  margin-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  gap: var(--s-2);
}
.maindiv{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  position:relative;
  z-index:2;
}

.hero__content{
  flex:1;
  position:relative;
  z-index:2;
}

.hero__title{
  flex:1;
  position:relative;
  z-index:3;
}

.stateimg{
  width:100%;
  max-width:560px;
  display:block;
  position:relative;
  z-index:3;
  filter:none !important;
  opacity:1 !important;
  mix-blend-mode:normal;
}

.hero__veil{
  z-index:1;
}

.hero__content,
.hero__title,
.stateimg{
  position:relative;
  z-index:3;
}
.hero__stats {
  margin-top: 4rem;
  padding-bottom: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
  max-width: 720px;
}
.maindiv{
    display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
.stateimg{
  width: 90%;
  margin: 0 auto;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero__stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--gold-200);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(246, 241, 231, 0.7);
}

.hero__scroll {
  position: absolute;
  bottom: var(--s-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(246, 241, 231, 0.6);
}

.hero__scroll-text {
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  color: var(--gold-500);
  font-weight: 500;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--gold-300), transparent);
  position: relative;
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--gold-200);
  animation: scrollDot 2s var(--ease) infinite;
}

@keyframes scrollDot {
  0% { top: -50px; }
  100% { top: 50px; }
}

/* ---------- Reveal animation base ---------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger handled inline via transition-delay */
.reveal.is-visible[data-reveal-delay="1"] { transition-delay: 0.1s; }
.reveal.is-visible[data-reveal-delay="2"] { transition-delay: 0.2s; }
.reveal.is-visible[data-reveal-delay="3"] { transition-delay: 0.3s; }

/* ---------- Split reveal (hero title) ---------- */
.split-reveal .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.split-reveal .word > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease);
}

.split-reveal.is-ready .word > span {
  transform: translateY(0);
}

/* ---------- Why NRIs ---------- */
.why {
  background: var(--paper);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-3);
}

.why__card {
  background: var(--cream);
  border: 1px solid rgba(184, 142, 62, 0.14);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}

.why__card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
  border-color: rgba(184, 142, 62, 0.35);
}

.why__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  color: var(--gold-600);
  margin-bottom: var(--s-3);
}

.why__icon svg {
  width: 26px;
  height: 26px;
}

.why__card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--ink-900);
  margin-bottom: var(--s-2);
  line-height: 1.2;
}

.why__card p {
  font-size: 0.94rem;
  color: var(--ink-500);
  line-height: 1.65;
}

/* ---------- Growth Guaranteed ---------- */
.growth {
  color: var(--ink-50);
  overflow: hidden;
}

.growth__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.growth__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.growth__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 17, 13, 0.92) 0%, rgba(20, 17, 13, 0.78) 60%, rgba(20, 17, 13, 0.6) 100%);
}

.growth__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: center;
}

.growth__lead {
  margin-top: var(--s-3);
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(246, 241, 231, 0.84);
}

.growth__pillars {
  margin-top: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.growth__pillars li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-3);
  align-items: center;
  padding-bottom: var(--s-3);
  border-bottom: 1px solid rgba(216, 180, 99, 0.2);
}

.growth__pillars-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold-300);
  font-weight: 600;
}

.growth__pillars h4 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink-50);
  margin-bottom: 0px;
}

.growth__pillars p {
  font-size: 0.92rem;
  color: rgba(246, 241, 231, 0.74);
  line-height: 1.6;
}

.growth__panel {
  background: rgba(246, 241, 231, 0.06);
  border: 1px solid rgba(216, 180, 99, 0.28);
  border-radius: var(--radius-xl);
  padding: var(--s-5);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.growth__panel-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-200);
}

.growth__panel-head h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--ink-50);
  margin-top: var(--s-2);
  line-height: 1.25;
}

.growth__metrics {
  margin-top: var(--s-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}

.growth__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.growth__metric-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--gold-300);
  line-height: 1;
}

.growth__metric-label {
  font-size: 0.82rem;
  color: rgba(246, 241, 231, 0.72);
  line-height: 1.4;
}

.growth__panel-foot {
  margin-top: var(--s-4);
  font-size: 0.74rem;
  color: rgba(246, 241, 231, 0.5);
  line-height: 1.5;
}

/* ---------- Projects ---------- */
.projects {
  background: var(--cream);
}

.projects__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-7);
}

.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
  align-items: center;
}

.project--reverse .project__media {
  order: 2;
}

.project__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}

.project__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
  will-change: transform;
}

.project__media:hover img {
  transform: scale(1.08);
}

.project__tag {
  position: absolute;
  top: var(--s-2);
  left: var(--s-2);
  padding: 6px 14px;
  background: rgba(20, 17, 13, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--gold-200);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid rgba(216, 180, 99, 0.3);
}

.project__body {
  padding: var(--s-2);
}

.project__num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold-500);
  letter-spacing: 0.2em;
}

.project__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--ink-900);
  margin-top: 6px;
  line-height: 1.1;
}

.project__loc {
  font-size: 0.78rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: var(--s-2);
}

.project__desc {
  margin-top: var(--s-3);
  font-size: 1rem;
  color: var(--ink-500);
  line-height: 1.7;
}

.project__specs {
  margin-top: var(--s-3);
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  font-family: var(--font-body);
  padding-top: var(--s-3);
  border-top: 1px solid rgba(184, 142, 62, 0.22);
}

.project__specs li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.project__specs span {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--ink-400);
}

.project__specs strong {
 
  font-size: 1.05rem;
  color: var(--ink-900);
  font-weight: 600;
}

.project__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: var(--s-4);
  font-size: 0.78rem;
  border-bottom: 1px solid var(--gold-600);
  padding: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-600);
  transition: gap 0.4s var(--ease), color 0.3s var(--ease);
}

.project__link:hover {
  gap: 18px;
  color: var(--gold-500);
}

/* ---------- Comparison table ---------- */
.compare {
  background: var(--paper);
}

.compare__table {
  border: 1px solid rgba(184, 142, 62, 0.2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
  padding: var(--s-3) var(--s-4);
  border-bottom: 1px solid rgba(184, 142, 62, 0.14);
  font-size: 0.92rem;
  align-items: center;
}

.compare__row:last-child {
  border-bottom: none;
}

.compare__row--head {
  background: var(--ink-900);
  color: var(--gold-200);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}

.compare__row:not(.compare__row--head):nth-child(odd) {
  background: var(--cream);
}

.compare__row > div {
  padding: 4px;
}

.compare__best {
  color: var(--gold-600);
  font-weight: 600;
}

.compare__note {
  margin-top: var(--s-3);
  font-size: 0.8rem;
  color: var(--ink-400);
  text-align: center;
}

/* ---------- Location ---------- */
.location {
  background: var(--cream-2);
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: center;
}

.location__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-card);
}

.location__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.location__media:hover img {
  transform: scale(1.06);
}

.location__chips {
  margin-top: var(--s-4);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-2);
}

.location__chip {
  background: var(--paper);
  border: 1px solid rgba(184, 142, 62, 0.2);
  border-radius: var(--radius);
  padding: var(--s-2) var(--s-3);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}

.location__chip:hover {
  transform: translateY(-4px);
  border-color: var(--gold-300);
}

.location__chip strong {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--ink-900);
  font-weight: 600;
}

.location__chip span {
  font-size: 0.82rem;
  color: var(--ink-500);
}

.location__points {
  margin-top: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.location__points li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--ink-600);
}

.location__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 1px;
  background: var(--gold-400);
}

/* ---------- Lifestyle ---------- */
.lifestyle {
  background: var(--paper);
}

.lifestyle__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--s-2);
}

.lifestyle__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.lifestyle__item--lg {
  grid-column: span 2;
  grid-row: span 2;
}

.lifestyle__item--wide {
  grid-column: span 2;
}

.lifestyle__item img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  transition: transform 1.5s var(--ease);
}

.lifestyle__item:hover img {
  transform: scale(1.08);
}

.lifestyle__item figcaption {
  position: absolute;
  left: var(--s-2);
  bottom: var(--s-2);
  padding: 8px 16px;
  background: rgba(20, 17, 13, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--gold-100);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 2px;
}

/* ---------- Benefits ---------- */
.benefits {
  background: var(--ink-900);
  color: var(--ink-50);
}

.benefits .section-head__title {
  color: var(--ink-50);
}

.benefits .section-head__lead {
  color: rgba(246, 241, 231, 0.72);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
}

.benefits__card {
  border: 1px solid rgba(216, 180, 99, 0.22);
  border-radius: var(--radius-lg);
  padding: var(--s-4);
  background: rgba(246, 241, 231, 0.03);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease), background 0.5s var(--ease);
}

.benefits__card:hover {
  transform: translateY(-6px);
  border-color: rgba(216, 180, 99, 0.5);
  background: rgba(246, 241, 231, 0.06);
}

.benefits__num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold-300);
  font-weight: 600;
}

.benefits__card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  margin: var(--s-2) 0 10px;
  color: var(--ink-50);
  line-height: 1.2;
}

.benefits__card p {
  font-size: 0.92rem;
  color: rgba(246, 241, 231, 0.72);
  line-height: 1.65;
}

/* ---------- Potential ---------- */
.potential {
  background: var(--cream);
}

.potential__inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: var(--s-6);
  align-items: center;
}

.potential__bars {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.potential__bar-head {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  color: var(--ink-600);
  margin-bottom: 8px;
}

.potential__bar-head span:last-child {
  color: var(--gold-600);
  font-weight: 500;
}

.potential__bar-track {
  height: 6px;
  background: rgba(184, 142, 62, 0.18);
  border-radius: 3px;
  overflow: hidden;
}

.potential__bar-fill {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold-300), var(--gold-500));
  border-radius: 3px;
  transition: width 1.4s var(--ease);
}

.potential__side {
  background: var(--ink-900);
  color: var(--ink-50);
  border-radius: var(--radius-xl);
  padding: var(--s-5);
}

.potential__stat {
  padding-bottom: var(--s-3);
  margin-bottom: var(--s-3);
  border-bottom: 1px solid rgba(216, 180, 99, 0.2);
}

.potential__stat:last-of-type {
  border-bottom: none;
}

.potential__stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--gold-300);
  line-height: 1;
}

.potential__stat-label {
  display: block;
  margin-top: 8px;
  font-size: 0.84rem;
  color: rgba(246, 241, 231, 0.72);
  line-height: 1.4;
}

.potential__side-note {
  margin-top: var(--s-3);
  font-size: 0.74rem;
  color: rgba(246, 241, 231, 0.5);
}

/* ---------- Credibility ---------- */
.credibility {
  background: var(--paper);
}

.credibility__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-6);
  align-items: center;
}

.credibility__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
}

.credibility__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}

.credibility__media:hover img {
  transform: scale(1.06);
}

.credibility__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  margin-top: var(--s-4);
}

.badge {
  padding: 7px 16px;
  border: 1px solid rgba(184, 142, 62, 0.3);
  border-radius: 100px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-600);
  background: var(--cream);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}

.badge:hover {
  background: var(--gold-300);
  color: var(--ink-900);
}

.credibility__quote {
  margin-top: var(--s-5);
  padding-left: var(--s-4);
  border-left: 2px solid var(--gold-300);
}

.credibility__quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--ink-800);
}

.credibility__quote cite {
  display: block;
  margin-top: var(--s-2);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--ink-400);
  font-style: normal;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--ink-900);
  color: var(--ink-50);
  overflow: hidden;
}

.testimonials .section-head__title {
  color: var(--ink-50);
}

.testimonials__track {
  display: flex;
  gap: var(--s-4);
  transition: transform 0.7s var(--ease);
  will-change: transform;
}

.testimonial {
  flex: 0 0 calc(100% - var(--s-4));
  background: rgba(246, 241, 231, 0.05);
  border: 1px solid rgba(216, 180, 99, 0.22);
  border-radius: var(--radius-xl);
  padding: var(--s-5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (min-width: 760px) {
  .testimonial {
    flex-basis: calc(50% - var(--s-4) / 2);
  }
}

.testimonial__stars {
  color: var(--gold-300);
  letter-spacing: 0.2em;
  margin-bottom: var(--s-3);
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--ink-50);
}

.testimonial figcaption {
  margin-top: var(--s-4);
  display: flex;
  align-items: center;
  gap: var(--s-2);
}

.testimonial__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  color: var(--ink-900);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.testimonial__who {
  display: flex;
  flex-direction: column;
}

.testimonial__who strong {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--ink-50);
}

.testimonial__who span {
  font-size: 0.8rem;
  color: rgba(246, 241, 231, 0.62);
}

.testimonials__nav {
  margin-top: var(--s-5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-3);
}

.testimonials__btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(216, 180, 99, 0.4);
  color: var(--gold-200);
  font-size: 1.1rem;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.testimonials__btn:hover {
  background: var(--gold-300);
  color: var(--ink-900);
  border-color: var(--gold-300);
}

.testimonials__dots {
  display: flex;
  gap: 8px;
}

.testimonials__dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(216, 180, 99, 0.3);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}

.testimonials__dots button.is-active {
  background: var(--gold-300);
  transform: scale(1.4);
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--cream);
}

.faq__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: var(--s-6);
  align-items: start;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.faq__item {
  border: 1px solid rgba(184, 142, 62, 0.2);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}

.faq__item[open] {
  border-color: var(--gold-300);
}

.faq__item summary {
  padding: var(--s-3) var(--s-4);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-900);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: var(--s-5);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: "+";
  position: absolute;
  right: var(--s-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-500);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.4s var(--ease);
}

.faq__item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
  padding: 0 var(--s-4) var(--s-4);
}

.faq__answer p {
  font-size: 0.94rem;
  color: var(--ink-500);
  line-height: 1.7;
}

/* ---------- Enquiry ---------- */
.enquiry {
  position: relative;
  color: var(--ink-50);
  overflow: hidden;
}

.enquiry__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.enquiry__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.enquiry__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(20, 17, 13, 0.92) 0%, rgba(20, 17, 13, 0.7) 100%);
}

.enquiry__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-6);
  align-items: start;
}

.enquiry__lead {
  margin-top: var(--s-3);
  font-size: 1.06rem;
  line-height: 1.7;
  color: rgba(246, 241, 231, 0.84);
}

.enquiry__bullets {
  margin-top: var(--s-4);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.enquiry__bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  color: rgba(246, 241, 231, 0.78);
}

.enquiry__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 1px;
  background: var(--gold-300);
}

.glass {
  background: rgba(246, 241, 231, 0.08);
  border: 1px solid rgba(216, 180, 99, 0.3);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-card);
}

.enquiry__intro,
.enquiry__form {
  opacity: 1;
  transform: none;
}
#phone{
  width: 100% !important;
}

.enquiry__form {
  padding: var(--s-5);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-3);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  padding-top: 10px;
  text-transform: uppercase;
  color: var(--gold-200);
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  background: rgba(20, 17, 13, 0.4);
  border: 1px solid rgba(216, 180, 99, 0.28);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink-50);
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(246, 241, 231, 0.4);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold-300);
  background: rgba(20, 17, 13, 0.55);
  outline: none;
}

.field select option {
  color: #fff;
}

.field textarea {
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(246, 241, 231, 0.78);
  font-size: 0.86rem;
  line-height: 1.5;
}

.consent input {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--gold-400);
  flex-shrink: 0;
}

.enquiry__submit {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: var(--s-2);
}

.enquiry__status {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.9rem;
  min-height: 1.4em;
  color: rgba(246, 241, 231, 0.8);
}

.enquiry__status.is-success {
  color: #8fd6a3;
}

.enquiry__status.is-error {
  color: #e89277;
}

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  color: var(--ink-50);
  text-align: center;
  padding-block: var(--s-8);
  overflow: hidden;
}

.final-cta__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.final-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 17, 13, 0.7) 0%, rgba(20, 17, 13, 0.88) 100%);
}

.final-cta__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.final-cta__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold-200);
  margin-bottom: var(--s-2);
}

.final-cta__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--ink-50);
}

.final-cta__sub {
  margin-top: var(--s-3);
  font-size: 1.1rem;
  color: rgb(249, 249, 249);
}
.footerlogo{
  width: 35%;
}

.final-cta__actions {
  margin-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-900);
  color: rgba(246, 241, 231, 0.72);
  padding-top: var(--s-6);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: var(--s-5);
  padding-bottom: 1.6rem;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold-300);
  display: block;
  margin-bottom: var(--s-2);
}
.footer__logo img{
  border-radius: 8px;

}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 320px;
  color: #ddd;
}

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink-50);
  font-weight: 500;
  margin-bottom: var(--s-2);
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__col a,
.footer__col li {
  font-size: 0.88rem;
  color: #ddd;
  transition: color 0.3s var(--ease);
  line-height: 1.5;
}

.footer__col a:hover {
  color: var(--gold-200);
}

.footer__bottom {
  border-top: 1px solid rgba(216, 180, 99, 0.18);
  padding-block: var(--s-3);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.76rem;
  color: #ddd;
  line-height: 1.6;
}

.footer__disc {
  max-width: 760px;
  margin-inline: auto;
}


/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .why__grid { grid-template-columns: repeat(2, 1fr); }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .growth__inner,
  .location__inner,
  .credibility__inner,
  .enquiry__inner,
  .potential__inner { grid-template-columns: 1fr; gap: var(--s-5); }
  .project--reverse .project__media { order: 0; }
  .project { grid-template-columns: 1fr; }
  .faq__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding-block: var(--s-7); }
  .header__nav, .header__cta { display: none; }
  .header__burger { display: flex; }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--s-4); }
  .hero__actions .btn { flex: 1 1 auto; }
  .why__grid { grid-template-columns: 1fr; }
  .benefits__grid { grid-template-columns: 1fr; }
  .growth__metrics { grid-template-columns: 1fr 1fr; }
  .compare__row { grid-template-columns: 1fr; gap: 6px; padding: var(--s-3); }
  .compare__row--head { display: none; }
  .compare__row > div::before {
    content: attr(data-label) " — ";
    font-size: 0.66rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-600);
    font-weight: 500;
  }
  .location__chips { grid-template-columns: 1fr; }
  .lifestyle__grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .lifestyle__item--lg { grid-column: span 2; }
  .lifestyle__item--wide { grid-column: span 2; }
  .enquiry__form { grid-template-columns: 1fr; }
  .potential__inner { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-4); }
  .credibility__media { aspect-ratio: 4 / 3; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .split-reveal .word > span { transform: none; }
  .hero__img { opacity: 1; transform: scale(1); }
}




.modal-backdrop.show{
  opacity:.55;
}


.luxury-modal{
  background: var(--cream);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.7);
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
}

.luxury-close{
  position:absolute;
  top:20px;
  right:20px;
  z-index:10;
  background:#fff;
  border-radius:50%;
  width:30px;
  height:30px;
  opacity:1;
}

.modal-eyebrow{
  color:#b8893f;
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:13px;
  font-weight:600;
  margin-bottom:10px;
}

.modal-title-luxury{
  font-size:3rem;
  line-height:1;
  color:#2f2b28;
  margin-bottom:12px;
}

.modal-subtitle{
  color:#6d6660;
  font-size:1rem;
  max-width:560px;
  margin:0 auto;
}
.modal-logo{
  width:25%;
  margin: 0 auto;
}
.luxury-input{
  border:1px solid #ddd4c8;
  border-radius:16px;
  padding:10px 18px;
  background:#fff;
  color:#2f2b28;
  transition:all .3s ease;
}

.luxury-input:focus{
  border-color:#b8893f;
  box-shadow:0 0 0 .2rem rgba(184,137,63,.15);
}

.form-label{
  color:#4a443f;
  font-weight:600;
  font-size: 12px;
  margin-bottom:8px;
}

.consent-text{
  color:#6d6660;
  font-size:.95rem;
}

.btn-gold-modal{
  background:#eb7927;
  color:#2f2b28;
  border:none;
  font-size: 11px;
  border-radius:999px;
  font-weight:700;
  transition:all .3s ease;
}

.btn-gold-modal:hover{
  background:#c9a03d;
  transform:translateY(-1px);
}

@media (max-width:768px){
  .footer__grid{
    padding-bottom: 0;
  }
  .section-head{
    margin-bottom: 0;
  }
  .faq__inner{
    gap: 20px;
  }
  .faq__answer p{
    margin-bottom: 0;
  }
  .faq__answer{
    padding-bottom: 28px;
  }
.btn-gold-modal{
      padding: 16px 21px !important;
    font-size: 11px;
}
.btn--gold{
  font-size: 12px;
}
  .mobile-menu__nav a{
    font-size: 1.2rem;
  }
  .modal-body{
    padding:2rem 1.25rem !important;
  }

  .modal-title-luxury{
    font-size:2.2rem;
  }
}
.modal .enquiry__form{
  padding:0 !important;
}
.plot-showcase{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:36px;
  margin-top:60px;
}

.plot-card.premium{
  background:#F8F4EA;
  border:1px solid rgba(62,64,149,.10);
  border-radius:32px;
  padding:30px;
  position:relative;
  overflow:hidden;
  transition:.45s ease;
  min-height:520px;
}


.plot-card.premium:hover{
  transform:translateY(-10px);
  box-shadow:0 30px 60px rgba(62,64,149,.10);
}

.plot-accent{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:4px;
  background:linear-gradient(90deg,#E87722,#3E4095);
}

.plot-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:30px;
}

.plot-id{
  font-family:"Cormorant Garamond",serif;
  font-size:56px;
  color:#3E4095;
  line-height:1;
}

.plot-type{
  color:#E87722;
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:12px;
}

.plot-card h3{
  font-family:"Cormorant Garamond",serif;
  font-size:48px;
  color:#3E4095;
  margin-bottom:12px;
  font-weight:500;
}

.plot-subtitle{
  color:#E87722;
  font-size:20px;
  margin-bottom:22px;
}

.plot-desc{
  margin-top: var(--s-3);
    font-size: 1rem;
    color: var(--ink-500);
    line-height: 1.7;
}

.plot-footer{
  position:absolute;
  left:42px;
  right:42px;
  bottom:36px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding-top:18px;
}

.plot-footer span{
  color:#3E4095;
  font-size:14px;
}

.plot-footer a{
  color:#3E4095;
  text-decoration:none;
  font-weight:600;
  position:relative;
}

.plot-footer a:after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:1px;
  background:#3E4095;
}

@media(max-width:768px){
  .growth__panel{
    padding: 1.5rem;
  }
  .projects__list{
    gap: 50px;
  }
  .eoi-item{
    margin-bottom: 30px !important;
  }
  .plot-showcase{
    grid-template-columns:1fr;
  }

  .plot-card.premium.offset{
    margin-top:0;
  }

  .plot-card h3{
    font-size:38px;
  }

  .plot-footer{
    position:static;
    margin-top:30px;
  }
}

.eoi-wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 24px;
}

.eoi-head{
  text-align:center;
  margin-bottom:80px;
}

.eoi-head.mt{
  margin-top:100px;
}

.eyebrow{
  color:var(--orange);
  letter-spacing:4px;
  font-size:13px;
  text-transform:uppercase;
  display:block;
  margin-bottom:22px;
}

.eoi-head h2{
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--ink-900);
    margin-top: 6px;
    line-height: 1.1;
}

.eoi-head h2 span{
  color:var(--orange);
}

.eoi-head p{
  margin-top: var(--s-3);
    font-size: 1.06rem;
    color: var(--ink-500);
    line-height: 1.7;
}

.eoi-item{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:70px;
  align-items:center;
  margin-bottom:90px;
}

.eoi-item.reverse{
  grid-template-columns:.8fr 1.2fr;
}

.eoi-item.reverse .eoi-image{
  order:2;
}

.eoi-image{
  position:relative;
}

.eoi-image img{
  width:100%;
  border-radius:28px;
  display:block;
  filter: blur(8px);
}

.eoi-tag{
  position: absolute;
    top: var(--s-2);
    left: var(--s-2);
    padding: 6px 14px;
    background: rgba(20, 17, 13, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--gold-200);
    font-size: 0.66rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 2px;
    border: 1px solid rgba(216, 180, 99, 0.3);
}

.eoi-no{
  font-family: var(--font-display);
    font-size: 0.9rem;
    color: var(--gold-500);
    letter-spacing: 0.2em;
}

.eoi-content h3{
      font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    color: var(--ink-900);
    margin-top: 6px;
    line-height: 1.1;
}

.eoi-content h4{
font-size: 0.78rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--ink-400);
    margin-top: var(--s-2);
}

.eoi-content p{
  margin-top: var(--s-3);
    font-size: 1rem;
    color: var(--ink-500);
    line-height: 1.7;
}

.eoi-content a{
  color:var(--blue);
  text-decoration:none;
  font-weight:600;
  border-bottom:1px solid var(--blue);
  padding-bottom:4px;
}

@media (max-width:991px){
  .eoi-head h2{
    font-size:52px;
  }

  .eoi-item,
  .eoi-item.reverse{
    grid-template-columns:1fr;
    gap:36px;
  }

  .eoi-item.reverse .eoi-image{
    order:0;
  }

  .eoi-content h3{
    font-size:42px;
  }

  .eoi-head p{
    font-size:18px;
  }
}

.project__rera{
  margin: 16px 0 0px;
  padding: 10px 20px;
  background: rgba(62, 64, 149, 0.04);
  border: 1px solid rgba(62, 64, 149, 0.12);
  border-left: 3px solid #E87722;
  border-radius: 16px;
}

.project__rera-label{
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #E87722;
  margin-bottom: 8px;
}

.project__rera p{
  margin: 0;
  color: #3E4095;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
}

.project__rera p strong{
  color: #1F225E;
  font-weight: 600;
}

@media (max-width: 768px){
  .project__rera{
    padding: 16px;
    margin: 20px 0 24px;
  }

  .project__rera p{
    font-size: 13px;
    line-height: 1.6;
  }
}