/* Palacio Estate — layout & theme (luxury real estate palette) */
:root {
  --primary: #0b3c5d;
  --primary-soft: #134a6e;
  --primary-deep: #072a42;
  --accent-gold: #d4af37;
  --accent-warm: #f59e0b;
  --gold: var(--accent-gold);
  --gold-hover: #b8962e;
  --charcoal: var(--primary);
  --charcoal-soft: var(--primary-soft);
  --text-dark: #1a2d3d;
  --text-muted: #5c6b7a;
  --white: #ffffff;
  --page-bg: #f8f9fa;
  --muted-bg: #eef1f4;
  --header-h: 76px;
  --shadow-card: 0 12px 40px rgba(11, 60, 93, 0.08);
  --shadow-card-hover: 0 20px 50px rgba(11, 60, 93, 0.14);
  --shadow-header: 0 4px 24px rgba(7, 42, 66, 0.12);
  --radius: 12px;
  --radius-pill: 999px;
  --transition: 0.28s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-heading: "Poppins", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@keyframes pe-fade-in-up {
  from {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pe-hero-zoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.065);
  }
}

@keyframes pe-hero-slide-up {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--page-bg);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
.why-card__title,
.section__title,
.hero__title,
.inner-hero__title,
.contact-page-hero__title,
.enquiry-page-hero__title,
.projects-page-hero__title,
.cta-banner__title,
.trust-strip__title,
.project-card__title,
.project-detail__title,
.dholera-hero__title,
.proj-hero__title,
.dmp-hero__title,
.dmp-usp-card__title,
.dmp-roi-card__title,
.footer__heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  padding: 13px 30px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background-position var(--transition),
    background-color var(--transition), color var(--transition);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.btn--gold,
.btn--dark {
  background-size: 200% 200%;
  background-position: 0% 50%;
}

@media (prefers-reduced-motion: no-preference) {
  .btn:hover {
    transform: translateY(-3px) scale(1.02);
  }
}

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

.btn--gold {
  /* Premium CTA gold gradient (do not change theme palette) */
  background: linear-gradient(135deg, #F59E0B, #D4AF37);
  color: var(--primary-deep);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
}

.btn--gold:hover {
  background: linear-gradient(135deg, #FBBF24, #D4AF37);
  box-shadow: 0 14px 32px rgba(212, 175, 55, 0.45), 0 0 0 3px rgba(245, 158, 11, 0.14);
}

/* Arrow micro-interaction on CTA buttons (works with existing icons) */
@media (prefers-reduced-motion: no-preference) {
  .btn i.fa-arrow-right,
  .btn i.fa-chevron-right {
    transition: transform var(--transition);
  }
  .btn:hover i.fa-arrow-right,
  .btn:hover i.fa-chevron-right {
    transform: translateX(4px);
  }
}

.btn--dark {
  background: linear-gradient(135deg, var(--primary-soft) 0%, var(--primary) 100%);
  color: var(--white);
}

.btn--dark:hover {
  background: linear-gradient(135deg, #1a5580 0%, var(--primary-soft) 100%);
  background-position: 100% 50%;
  box-shadow: 0 10px 28px rgba(11, 60, 93, 0.35);
}

.btn--light {
  background: rgba(255, 255, 255, 0.98);
  color: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--light:hover {
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1rem;
}

/* Header — always solid for legibility on any hero imagery */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 60, 93, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: no-preference) {
  .header {
    animation: pe-fade-in-up 0.55s var(--ease-out) both;
  }
}

.header.is-scrolled {
  background: rgba(4, 22, 38, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  border-bottom-color: rgba(255, 255, 255, 0.05);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, 100% - 32px);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.logo__icon {
  color: var(--gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.logo__icon img {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__link:hover {
  color: var(--gold);
}

.nav__link--active {
  color: var(--gold);
}

.nav__item {
  position: relative;
  list-style: none;
}

.nav__item--dropdown > .nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav__item--dropdown > .nav__link::after {
  content: "";
  border: 4px solid transparent;
  border-top-color: currentColor;
  margin-top: 4px;
}

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 200px;
  margin: 0;
  padding: 12px 0;
  list-style: none;
  background: rgba(11, 60, 93, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card-hover);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
  z-index: 1001;
}

@media (hover: hover) and (pointer: fine) {
  .nav__item--dropdown:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.nav__dropdown .nav__link {
  display: block;
  padding: 10px 20px;
  font-size: 0.8rem;
}

.nav__link--sub {
  font-weight: 500;
}

.nav__cta {
  padding: 10px 22px;
  font-size: 0.8rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + clamp(40px, 9vw, 80px)) 0 clamp(64px, 12vw, 112px);
  overflow: hidden;
  isolation: isolate;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.35s var(--ease-out);
  z-index: 0;
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__slide.is-active {
    animation: pe-hero-zoom 38s var(--ease-out) forwards;
  }
}

.hero__dots {
  position: absolute;
  left: 50%;
  bottom: clamp(20px, 5vw, 36px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
  padding: 10px 18px;
  margin: 0;
  list-style: none;
  background: rgba(4, 18, 28, 0.35);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero__dot {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition:
    width 0.45s var(--ease-out),
    background var(--transition),
    opacity var(--transition),
    transform var(--transition);
}

.hero__dot:hover,
.hero__dot:focus-visible {
  background: rgba(255, 255, 255, 0.85);
  outline: none;
}

.hero__dot.is-active {
  width: 32px;
  background: linear-gradient(90deg, var(--accent-gold), #e8c65c);
  opacity: 1;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* Lighter wash — more vibrant photo; soft bottom read for copy */
  background:
    linear-gradient(to top, rgba(2, 14, 26, 0.32) 0%, transparent 52%),
    linear-gradient(to right, rgba(11, 60, 93, 0.75), rgba(11, 60, 93, 0.25));
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: min(920px, 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.1rem, 2.8vw, 1.65rem);
}

.hero__copy {
  max-width: 38rem;
  margin-inline: auto;
}

.hero__title {
  margin: 0;
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--white);
  text-wrap: balance;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.38), 0 6px 40px rgba(0, 0, 0, 0.2);
}

.hero__title-accent {
  color: #f59e0b;
  font-weight: 600;
  text-shadow:
    0 0 40px rgba(245, 158, 11, 0.35),
    0 2px 20px rgba(0, 0, 0, 0.35);
}

.hero__subtitle {
  margin: 0;
  font-size: clamp(1.05rem, 2.1vw, 1.28rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.35);
}

/* Trust strip — below quick CTAs */
.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  max-width: 44rem;
}

.hero__trust-badges li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: background var(--transition), border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.hero__trust-badges li i {
  color: var(--accent-gold);
  font-size: 0.8rem;
  opacity: 0.95;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__trust-badges li:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(212, 175, 55, 0.35);
    transform: translateY(-2px);
  }
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 0.35rem;
}

.hero .hero__btn-primary,
.hero .hero__btn-secondary {
  min-height: 50px;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out),
    border-color 0.35s var(--ease-out);
}

/* Primary — spec gradient + lift + glow + scale */
.hero .hero__btn-primary.btn--gold {
  background: linear-gradient(135deg, #f59e0b, #d4af37);
  background-size: 100% 100%;
  color: var(--primary-deep);
  box-shadow: 0 6px 28px rgba(245, 158, 11, 0.38);
  border: none;
}

@media (prefers-reduced-motion: no-preference) {
  .hero .hero__btn-primary.btn--gold:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
      0 16px 44px rgba(245, 158, 11, 0.5),
      0 4px 16px rgba(212, 175, 55, 0.38);
    background: linear-gradient(135deg, #fbbf24, #e5c04a);
  }
}

.hero .hero__btn-primary.btn--gold:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.35);
}

/* Secondary — glass outline + hover fill */
.hero .hero__btn-secondary.btn--light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero .hero__btn-secondary.btn--light:hover {
  background: rgba(255, 255, 255, 0.24);
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: no-preference) {
  .hero .hero__btn-secondary.btn--light:hover {
    transform: translateY(-3px) scale(1.02);
  }
}

.hero .hero__btn-secondary.btn--light:active {
  transform: translateY(0) scale(0.98);
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.15);
}

.hero__quick-label {
  margin: clamp(0.75rem, 2vw, 1.25rem) 0 0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.hero__quick-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 720px;
  margin: 0;
  padding: 0;
}

.hero__quick-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  text-align: left;
  text-decoration: none;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.06),
    0 12px 36px rgba(0, 0, 0, 0.2);
  transition:
    transform 0.32s var(--ease-out),
    background 0.32s var(--ease-out),
    border-color 0.32s var(--ease-out),
    box-shadow 0.32s var(--ease-out);
}

.hero__quick-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.1),
    0 20px 48px rgba(0, 0, 0, 0.28);
}

.hero__quick-card:active {
  transform: translateY(-1px) scale(0.99);
}

.hero__quick-card:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__quick-card:hover {
    transform: translateY(-5px);
  }
}

.hero__quick-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.15rem;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero__quick-card--call .hero__quick-card__icon {
  color: #7dd3fc;
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(125, 211, 252, 0.35);
}

.hero__quick-card--wa .hero__quick-card__icon {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.14);
  border-color: rgba(74, 222, 128, 0.4);
  font-size: 1.35rem;
}

.hero__quick-card--form .hero__quick-card__icon {
  color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.12);
  border-color: rgba(212, 175, 55, 0.35);
}

.hero__quick-card__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.hero__quick-card__title {
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.hero__quick-card__meta {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hero__quick-card__chev {
  flex-shrink: 0;
  opacity: 0.45;
  font-size: 0.7rem;
  transition: opacity var(--transition), transform var(--transition);
}

.hero__quick-card:hover .hero__quick-card__chev {
  opacity: 0.95;
}

@media (prefers-reduced-motion: no-preference) {
  .hero__quick-card:hover .hero__quick-card__chev {
    transform: translateX(3px);
  }
}

@media (max-width: 700px) {
  .hero__quick-actions {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .hero__quick-card {
    padding: 12px 14px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__copy .hero__title {
    animation: pe-fade-in-up 0.78s var(--ease-out) 0.08s both;
  }

  .hero__copy .hero__subtitle {
    animation: pe-fade-in-up 0.75s var(--ease-out) 0.15s both;
  }

  .hero__actions .hero__btn-primary {
    animation: pe-fade-in-up 0.7s var(--ease-out) 0.2s both;
  }

  .hero__actions .hero__btn-secondary {
    animation: pe-fade-in-up 0.7s var(--ease-out) 0.3s both;
  }

  .hero__quick-label {
    animation: pe-fade-in-up 0.7s var(--ease-out) 0.34s both;
  }

  .hero__quick-actions .hero__quick-card:nth-child(1) {
    animation: pe-hero-slide-up 0.78s var(--ease-out) 0.38s both;
  }

  .hero__quick-actions .hero__quick-card:nth-child(2) {
    animation: pe-hero-slide-up 0.78s var(--ease-out) 0.44s both;
  }

  .hero__quick-actions .hero__quick-card:nth-child(3) {
    animation: pe-hero-slide-up 0.78s var(--ease-out) 0.5s both;
  }

  .hero__trust-badges {
    animation: pe-fade-in-up 0.75s var(--ease-out) 0.56s both;
  }
}

/* Sections */
.section {
  padding: 80px 0;
}

.section--white {
  background: var(--white);
}

.section--muted {
  background: linear-gradient(180deg, var(--muted-bg) 0%, #e8ecf0 100%);
}

.section__eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.section__header {
  text-align: center;
  margin-bottom: 48px;
}

.section__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
}

.section__title--left {
  text-align: left;
}

.section__subtitle {
  margin: 0;
  font-size: 1rem;
  color: var(--text-muted);
}

/* Project cards */
.cards {
  display: grid;
  gap: 28px;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.project-card {
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 60, 93, 0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}

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

.project-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover .project-card__image-wrap img {
  transform: scale(1.05);
}

.project-card__body {
  padding: 24px;
}

.project-card__title {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--charcoal);
}

.project-card__price {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold);
}

.project-card__meta {
  margin: 0 0 20px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Highlights */
.highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 60, 93, 0.08);
  transition: box-shadow var(--transition), transform var(--transition);
}

.highlight-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}

.highlight-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--gold);
}

.highlight-card__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.highlight-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}

.highlight-card__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* About */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.about__text {
  margin: 0 0 24px;
  color: var(--text-dark);
  line-height: 1.75;
}

/* CTA banner */
.cta-banner {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 0;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(7, 42, 66, 0.88) 0%, rgba(11, 60, 93, 0.72) 100%);
  z-index: 1;
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.cta-banner__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
}

.cta-banner__text {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.05rem;
}

/* Footer */
.footer {
  background: linear-gradient(165deg, var(--primary) 0%, var(--primary-deep) 55%, #051520 100%);
  color: var(--white);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__heading {
  margin: 0 0 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form__input {
  width: 100%;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.contact-form__input::placeholder {
  color: var(--text-muted);
}

.contact-form__input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
}

.contact-form__input:focus-visible {
  outline: none;
}

.contact-form__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form--light .contact-form__input {
  background: var(--muted-bg);
  border: 1px solid rgba(11, 60, 93, 0.16);
  color: var(--charcoal);
}

.contact-form--light .contact-form__input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.22);
}

.contact-form--light .contact-form__input:focus-visible {
  outline: none;
}

.footer__map {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  min-height: 280px;
  box-shadow: 0 6px 22px rgba(11, 60, 93, 0.28);
}

.footer__map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: block;
  filter: grayscale(0.1) contrast(1.08) saturate(1.02);
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.footer__info-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 4px;
}

.footer__info-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer__info-value {
  font-size: 0.95rem;
  color: var(--white);
}

a.footer__info-value:hover {
  color: var(--gold);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
}

.footer__copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

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

.footer__subhead {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--gold);
}

.footer__social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer__social-link {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  transition: background var(--transition), color var(--transition), transform var(--transition), border-color var(--transition);
}

.footer__social-link:hover {
  color: var(--charcoal);
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.trust-strip {
  background: linear-gradient(140deg, var(--primary) 0%, var(--primary-soft) 100%);
  color: var(--white);
  border-radius: calc(var(--radius) + 2px);
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-strip__inner {
  padding: clamp(26px, 4vw, 40px);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.trust-strip__title {
  margin: 0 0 10px;
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  line-height: 1.3;
}

.trust-strip__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.trust-strip__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 20px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
  z-index: 1200;
  transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.wa-float i {
  display: inline-block;
  transition: transform var(--transition);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.48);
  filter: saturate(1.06);
}

/* Desktop-only: subtle periodic attention animation (disabled for reduced motion) */
@media (min-width: 769px) and (prefers-reduced-motion: no-preference) {
  .wa-float {
    animation: pe-wa-attention 8.5s ease-in-out infinite;
    transform-origin: 50% 50%;
  }

  .wa-float i {
    animation: pe-wa-wiggle 8.5s ease-in-out infinite;
  }

  .wa-float:hover {
    animation: none;
  }

  .wa-float:hover i {
    animation: none;
    transform: translateY(-1px) scale(1.05);
  }
}

@keyframes pe-wa-attention {
  0%,
  72%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.38);
    filter: saturate(1);
  }
  78% {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.48);
    filter: saturate(1.06);
  }
  82% {
    transform: translateY(0) scale(1);
  }
  86% {
    transform: translateY(-2px) scale(1.02);
  }
}

@keyframes pe-wa-wiggle {
  0%,
  74%,
  100% {
    transform: rotate(0deg);
  }
  76% {
    transform: rotate(-10deg);
  }
  78% {
    transform: rotate(12deg);
  }
  80% {
    transform: rotate(-7deg);
  }
  82% {
    transform: rotate(8deg);
  }
  84% {
    transform: rotate(0deg);
  }
}

/* Desktop: WhatsApp “pop” bubble (conversion nudge) */
.wa-float-pop {
  position: fixed;
  right: 86px;
  bottom: 22px;
  z-index: 1199;
  display: none;
  max-width: min(280px, calc(100vw - 140px));
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--primary-deep);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(11, 60, 93, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.wa-float-pop::after {
  content: "";
  position: absolute;
  right: -8px;
  bottom: 18px;
  width: 14px;
  height: 14px;
  background: rgba(255, 255, 255, 0.96);
  border-right: 1px solid rgba(11, 60, 93, 0.08);
  border-bottom: 1px solid rgba(11, 60, 93, 0.08);
  transform: rotate(-45deg);
}

.wa-float-pop__title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 0.92rem;
}

.wa-float-pop__title i {
  color: #128C7E;
}

.wa-float-pop__text {
  margin: 0;
  font-size: 0.86rem;
  color: rgba(4, 22, 38, 0.75);
  line-height: 1.45;
}

.wa-float-pop__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.wa-float-pop__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.86rem;
  color: #128C7E;
  text-decoration: none;
}

.wa-float-pop__link:hover {
  text-decoration: underline;
}

.wa-float-pop__close {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(4, 22, 38, 0.55);
  cursor: pointer;
  padding: 6px;
  border-radius: 10px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.wa-float-pop__close:hover {
  background: rgba(11, 60, 93, 0.06);
  color: rgba(4, 22, 38, 0.75);
  transform: translateY(-1px);
}

@media (min-width: 769px) {
  body.show-wa-pop .wa-float-pop {
    display: block;
  }
}

@media (prefers-reduced-motion: no-preference) {
  body.show-wa-pop .wa-float-pop {
    animation: pe-fade-in-up 0.45s var(--ease-out) both;
  }
}

/* Inner pages */
.page-main {
  padding-top: var(--header-h);
}

.inner-hero {
  padding: calc(var(--header-h) + 48px) 0 48px;
  background: linear-gradient(180deg, var(--page-bg) 0%, #eef2f5 100%);
  text-align: center;
  border-bottom: 1px solid rgba(11, 60, 93, 0.06);
}

.inner-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
}

.inner-hero__eyebrow a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inner-hero__title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--charcoal);
}

.inner-hero__lead {
  margin: 0;
  max-width: 640px;
  margin-inline: auto;
  color: var(--text-muted);
  font-size: 1rem;
}

@media (prefers-reduced-motion: no-preference) {
  .inner-hero__eyebrow {
    animation: pe-fade-in-up 0.65s var(--ease-out) both;
  }

  .inner-hero__title {
    animation: pe-fade-in-up 0.65s var(--ease-out) 0.06s both;
  }

  .inner-hero__lead {
    animation: pe-fade-in-up 0.65s var(--ease-out) 0.14s both;
  }
}

/* Scroll reveal (class added via JS when motion is allowed) */
.reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Smooth scrolling (respects reduced motion) */
@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}

/* Micro trust + urgency text (safe, no layout shift) */
.pe-micro-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 10px 0 0;
  line-height: 1.5;
}

.pe-micro-note strong {
  color: var(--primary);
}

.pe-privacy-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 12px 0 0;
  line-height: 1.6;
}

.pe-privacy-note i {
  margin-top: 3px;
  color: rgba(212, 175, 55, 0.95);
}

/* Form success/error messaging (injected by JS; keeps existing form structure intact) */
.pe-form-status {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11, 60, 93, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
  color: rgba(4, 22, 38, 0.78);
  font-size: 0.92rem;
  line-height: 1.5;
}

.pe-form-status--success {
  border-color: rgba(34, 197, 94, 0.22);
  background: rgba(34, 197, 94, 0.08);
}

.pe-form-status--error {
  border-color: rgba(239, 68, 68, 0.22);
  background: rgba(239, 68, 68, 0.08);
}

.pe-form-status strong {
  color: var(--primary);
}

.pe-field-error {
  margin: 8px 0 0;
  color: rgba(239, 68, 68, 0.95);
  font-size: 0.86rem;
}

/* Sticky mobile CTA bar (injected via JS; mobile only) */
.pe-mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
  background: rgba(4, 22, 38, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: none;
}

.pe-mobile-cta__inner {
  width: min(1200px, 100% - 8px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.pe-mobile-cta__btn {
  width: 100%;
  justify-content: center;
  padding: 14px 14px;
  font-size: 0.95rem;
}

.pe-mobile-cta__btn--wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #062012;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.22);
}

@media (max-width: 768px) {
  .pe-mobile-cta {
    display: block;
  }

  /* Mobile: sticky CTA replaces floating WhatsApp button */
  .wa-float {
    display: none;
  }

  .wa-float-pop {
    display: none !important;
  }

  /* Prevent content overlap with the sticky bar */
  body.has-mobile-cta {
    padding-bottom: 84px;
  }

  /* Mobile: make key buttons easier to tap without changing layout */
  .btn--block,
  .enquiry-cta__btn {
    width: 100%;
  }
}

.prose {
  max-width: 720px;
  margin-inline: auto;
}

.prose p {
  margin: 0 0 1rem;
  line-height: 1.75;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose--wide {
  max-width: 800px;
}

.prose h2 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.prose ul {
  margin: 0 0 1rem 1.25rem;
  padding: 0;
  line-height: 1.75;
}

.prose li {
  margin-bottom: 0.35rem;
}

.prose a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
}

.stat-row--icons {
  gap: clamp(32px, 6vw, 56px);
  margin-top: 48px;
}

.stat-item {
  text-align: center;
}

.stat-item--with-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 220px;
}

.stat-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 14px;
  border-radius: 16px;
  font-size: 1.35rem;
  color: var(--accent-gold);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.14) 0%, rgba(11, 60, 93, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 24px rgba(11, 60, 93, 0.08);
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease, box-shadow 0.28s ease;
}

.stat-item__value {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
}

.stat-item__label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 8px;
  line-height: 1.45;
}

@media (prefers-reduced-motion: no-preference) {
  .stat-item--with-icon:hover .stat-item__icon {
    transform: translateY(-2px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 12px 28px rgba(11, 60, 93, 0.12);
  }
}

.why-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.why-list li {
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.why-list strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-size: 1rem;
}

.why-list p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.65;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.split-section__media {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.split-section__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.project-detail {
  scroll-margin-top: calc(var(--header-h) + 16px);
  margin-bottom: 56px;
}

.project-detail:last-child {
  margin-bottom: 0;
}

.project-detail__title {
  margin: 0 0 16px;
  font-size: 1.5rem;
  color: var(--charcoal);
}

.project-detail__text p {
  margin: 0 0 12px;
  line-height: 1.75;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.amenity-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 60, 93, 0.08);
  font-size: 0.9rem;
  font-weight: 500;
}

.amenity-item i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* Projects listing page (projects.html) — image hero */
.projects-page-hero {
  position: relative;
  min-height: min(56vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 52px) 0 60px;
  overflow: hidden;
  text-align: center;
}

.projects-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .projects-page-hero__bg {
    animation: pe-hero-zoom 20s var(--ease-out) forwards;
  }
}

.projects-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(4, 22, 38, 0.82) 0%,
    rgba(11, 60, 93, 0.52) 48%,
    rgba(5, 18, 30, 0.9) 100%
  );
  z-index: 1;
}

.projects-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin-inline: auto;
}

.projects-page-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.projects-page-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
}

.projects-page-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

@media (prefers-reduced-motion: no-preference) {
  .projects-page-hero__title {
    animation: pe-fade-in-up 0.72s var(--ease-out) both;
  }

  .projects-page-hero__lead,
  .projects-page-hero__eyebrow {
    animation: pe-fade-in-up 0.72s var(--ease-out) 0.08s both;
  }
}

@media (max-width: 480px) {
  .projects-page-hero {
    min-height: min(48vh, 420px);
    padding-bottom: 52px;
  }
}

/* Contact & enquiry pages — full-bleed image hero */
.contact-page-hero,
.enquiry-page-hero {
  position: relative;
  min-height: min(58vh, 580px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 52px) 0 64px;
  overflow: hidden;
  text-align: center;
}

.contact-page-hero__bg,
.enquiry-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .contact-page-hero__bg,
  .enquiry-page-hero__bg {
    animation: pe-hero-zoom 22s var(--ease-out) forwards;
  }
}

.contact-page-hero__overlay,
.enquiry-page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(4, 22, 38, 0.88) 0%,
    rgba(11, 60, 93, 0.55) 45%,
    rgba(5, 18, 30, 0.92) 100%
  );
  z-index: 1;
}

.contact-page-hero__content,
.enquiry-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-inline: auto;
}

.contact-page-hero__eyebrow,
.enquiry-page-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.contact-page-hero__title,
.enquiry-page-hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.75rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--white);
}

.contact-page-hero__lead,
.enquiry-page-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin-inline: auto;
}

@media (prefers-reduced-motion: no-preference) {
  .contact-page-hero__title,
  .enquiry-page-hero__title {
    animation: pe-fade-in-up 0.72s var(--ease-out) both;
  }

  .contact-page-hero__lead,
  .contact-page-hero__eyebrow,
  .enquiry-page-hero__lead,
  .enquiry-page-hero__eyebrow {
    animation: pe-fade-in-up 0.72s var(--ease-out) 0.08s both;
  }
}

@media (max-width: 480px) {
  .contact-page-hero,
  .enquiry-page-hero {
    min-height: min(52vh, 460px);
    padding-bottom: 48px;
  }
}

.page-contact .contact-section__header {
  margin-bottom: 40px;
}

.page-contact .contact-section--quick {
  padding-bottom: 72px;
}

.contact-quick__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 960px;
  margin-inline: auto;
}

.contact-quick__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 24px 22px;
  background: var(--white);
  border: 1px solid rgba(11, 60, 93, 0.1);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

@media (prefers-reduced-motion: no-preference) {
  .contact-quick__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 175, 55, 0.45);
  }
}

.contact-quick__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.contact-quick__icon--call {
  background: rgba(11, 60, 93, 0.1);
  color: var(--primary);
}

.contact-quick__icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #128c7e;
}

.contact-quick__icon--visit {
  background: rgba(212, 175, 55, 0.18);
  color: var(--primary-deep);
}

.contact-quick__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.contact-quick__meta {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
}

.contact-quick__hint {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.page-contact .contact-quick__grid .contact-quick__card:nth-child(1) {
  transition-delay: 0.04s;
}

.page-contact .contact-quick__grid .contact-quick__card:nth-child(2) {
  transition-delay: 0.1s;
}

.page-contact .contact-quick__grid .contact-quick__card:nth-child(3) {
  transition-delay: 0.16s;
}

.page-contact .contact-trust__grid .contact-trust__item:nth-child(1) {
  transition-delay: 0.04s;
}

.page-contact .contact-trust__grid .contact-trust__item:nth-child(2) {
  transition-delay: 0.1s;
}

.page-contact .contact-trust__grid .contact-trust__item:nth-child(3) {
  transition-delay: 0.16s;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  max-width: 1040px;
  margin-inline: auto;
}

.contact-layout__form.lead-form-card {
  margin-inline: 0;
}

.contact-field {
  margin-bottom: 18px;
}

.contact-field:last-of-type {
  margin-bottom: 22px;
}

.contact-field__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.02em;
}

.contact-field__req {
  color: #c45c5c;
  font-weight: 700;
}

.contact-field__opt {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.page-contact .contact-form--page .contact-form__input {
  border-radius: 14px;
  padding: 15px 18px;
  font-size: 0.95rem;
}

.page-contact .contact-form--page .contact-form__textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-form__footnote {
  margin: 20px 0 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.contact-form__footnote a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form__footnote a:hover {
  color: var(--primary-soft);
}

.page-contact .btn--contact-submit {
  gap: 0.55em;
  padding: 15px 28px;
  font-size: 0.95rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #e4c255 0%, var(--accent-gold) 42%, #b8962e 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.42);
  position: relative;
}

.page-contact .btn--contact-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #f0d878 0%, #e4c255 45%, var(--accent-gold) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.page-contact .btn--contact-submit span,
.page-contact .btn--contact-submit i {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .page-contact .btn--contact-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
    background-position: 100% 50%;
  }

  .page-contact .btn--contact-submit:hover::after {
    opacity: 0.35;
  }
}

.contact-layout__aside {
  padding: clamp(24px, 4vw, 32px);
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(11, 60, 93, 0.1);
  box-shadow: var(--shadow-card);
}

.contact-aside__title {
  margin: 0 0 8px;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.contact-aside__intro {
  margin: 0 0 22px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.contact-aside__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-aside__item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11, 60, 93, 0.08);
}

.contact-aside__item:first-child {
  padding-top: 0;
}

.contact-aside__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.contact-aside__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(11, 60, 93, 0.06);
  color: var(--accent-gold);
  font-size: 1rem;
}

.contact-aside__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-aside__value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.5;
}

.contact-aside__value--multiline {
  font-weight: 500;
}

a.contact-aside__value {
  color: var(--primary);
}

a.contact-aside__value:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-trust__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1040px;
  margin-inline: auto;
}

.contact-trust__item {
  padding: 28px 22px;
  background: linear-gradient(180deg, var(--white) 0%, var(--page-bg) 100%);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-radius: calc(var(--radius) + 4px);
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

@media (prefers-reduced-motion: no-preference) {
  .contact-trust__item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 175, 55, 0.35);
  }
}

.contact-trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  border-radius: 14px;
  background: rgba(11, 60, 93, 0.08);
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.contact-trust__stat {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
  line-height: 1.35;
}

.contact-trust__note {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.contact-map__frame {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(11, 60, 93, 0.1);
  max-width: 960px;
  margin-inline: auto;
  line-height: 0;
}

.contact-map__frame iframe {
  display: block;
  width: 100%;
  height: min(420px, 55vh);
  min-height: 280px;
}

@media (max-width: 992px) {
  .contact-quick__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

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

  .contact-trust__grid {
    grid-template-columns: 1fr;
    max-width: 440px;
  }
}

@media (max-width: 768px) {
  .page-contact .contact-section--quick {
    padding-bottom: 56px;
  }

  .contact-quick__card {
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .contact-quick__icon {
    margin-inline: auto;
  }

  .page-contact .btn--contact-submit {
    width: 100%;
  }
}

/* —— Projects listing: premium polish (2025) — depth, media scrim, CTAs, tags, rhythm —— */
.section--projects-list {
  padding-top: clamp(64px, 10vw, 88px);
  background: linear-gradient(180deg, #fbfcfd 0%, var(--white) 38%, #f6f8fa 100%);
}

.section__header--projects-list {
  margin-bottom: clamp(36px, 6vw, 48px);
}

.page-projects .project-detail--listing {
  margin-bottom: clamp(28px, 5vw, 40px);
}

.page-projects .project-detail--listing:last-child {
  margin-bottom: 0;
}

.page-projects .projects-listing__split {
  align-items: center;
  gap: clamp(28px, 4vw, 44px);
  padding: clamp(22px, 4vw, 32px);
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow:
    0 14px 40px rgba(11, 60, 93, 0.07),
    0 2px 8px rgba(11, 60, 93, 0.04);
  background: var(--white);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.page-projects .project-detail--listing:nth-of-type(odd) .projects-listing__split {
  background: linear-gradient(165deg, var(--white) 0%, rgba(11, 60, 93, 0.028) 100%);
}

.page-projects .project-detail--listing:nth-of-type(even) .projects-listing__split {
  background: linear-gradient(165deg, rgba(11, 60, 93, 0.045) 0%, var(--white) 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .page-projects .project-detail--listing:hover .projects-listing__split {
    transform: translateY(-10px);
    box-shadow:
      0 28px 64px rgba(11, 60, 93, 0.14),
      0 12px 28px rgba(11, 60, 93, 0.08),
      0 0 0 1px rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.28);
  }
}

/* Image: overflow + subtle gradient scrim + zoom */
.page-projects .projects-listing__media {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 14px 40px rgba(11, 60, 93, 0.14);
}

.page-projects .projects-listing__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(11, 60, 93, 0.14) 0%,
    transparent 42%,
    rgba(7, 26, 40, 0.38) 100%
  );
  opacity: 0.92;
  transition: opacity 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .page-projects .project-detail--listing:hover .projects-listing__media::after {
    opacity: 0.78;
  }
}

.page-projects .projects-listing__media img {
  position: relative;
  z-index: 0;
  display: block;
  transition: transform 0.55s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .page-projects .project-detail--listing:hover .projects-listing__media img {
    transform: scale(1.08);
  }
}

.page-projects .projects-listing__body {
  min-width: 0;
}

.page-projects .project-detail__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}

.page-projects .project-tag {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--primary);
  background: linear-gradient(180deg, rgba(11, 60, 93, 0.09) 0%, rgba(11, 60, 93, 0.05) 100%);
  border: 1px solid rgba(11, 60, 93, 0.14);
  border-radius: 20px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .page-projects .project-tag:hover {
    border-color: rgba(212, 175, 55, 0.35);
    box-shadow: 0 4px 12px rgba(11, 60, 93, 0.08);
  }
}

.page-projects .project-detail__title {
  margin-bottom: 12px;
}

.page-projects .project-detail__lead {
  margin: 0 0 14px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.55;
}

.page-projects .project-detail__bullets {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.page-projects .project-detail__bullets li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 1.15rem;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--text-dark);
}

.page-projects .project-detail__bullets li:last-child {
  margin-bottom: 0;
}

.page-projects .project-detail__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--accent-warm) 100%);
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

/* Listing CTA: warm gold gradient + lift + glow + arrow nudge (Projects page only) */
.page-projects .projects-listing__btn.btn--gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #f59e0b 0%, #d4af37 100%);
  background-size: 100% 100%;
  border: none;
  box-shadow: 0 6px 22px rgba(245, 158, 11, 0.35);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
}

.page-projects .projects-listing__btn.btn--gold::after {
  content: "\2192";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .page-projects .projects-listing__btn.btn--gold:hover {
    transform: translateY(-4px);
    box-shadow:
      0 14px 36px rgba(245, 158, 11, 0.48),
      0 6px 16px rgba(212, 175, 55, 0.35);
    filter: brightness(1.03);
  }

  .page-projects .projects-listing__btn.btn--gold:hover::after {
    transform: translateX(5px);
  }
}

/* Staggered fade-up delays for nested .reveal targets (Projects listing section) */
.page-projects .section--projects-list > .container > .section__header--projects-list.reveal {
  transition-delay: 0s;
}

.page-projects .section--projects-list > .container > .project-detail--listing:nth-child(2).reveal {
  transition-delay: 0.07s;
}

.page-projects .section--projects-list > .container > .project-detail--listing:nth-child(3).reveal {
  transition-delay: 0.14s;
}

.section--projects-amenities {
  border-top: 1px solid rgba(11, 60, 93, 0.06);
  background: linear-gradient(180deg, #eef1f4 0%, #f5f7f9 50%, #eef1f4 100%);
}

.page-projects .section--projects-amenities .amenity-item {
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease, border-color 0.28s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .page-projects .section--projects-amenities .amenity-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 175, 55, 0.2);
  }
}

.projects-amenities__note {
  margin: 36px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .page-projects .projects-listing__split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .page-projects .projects-listing__btn.btn--gold {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 480px) {
  .page-projects .project-detail__tags {
    gap: 8px;
  }

  .page-projects .project-tag {
    font-size: 0.62rem;
    padding: 5px 12px;
  }
}

/* —— Project pages (e.g. AeroVista) —— */
.proj-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 0 64px;
  overflow: hidden;
  text-align: center;
}

.proj-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 42%;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .proj-hero__bg {
    animation: pe-hero-zoom 22s var(--ease-out) forwards;
  }
}

.proj-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(4, 22, 38, 0.88) 0%,
    rgba(11, 60, 93, 0.55) 45%,
    rgba(5, 18, 30, 0.92) 100%
  );
  z-index: 1;
}

.proj-hero__content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.proj-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.proj-hero__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--white);
}

.proj-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2.1vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.proj-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
  margin-top: clamp(28px, 4vw, 36px);
}

.proj-hero .btn--gold {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.proj-hero .btn--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.proj-hero .btn--light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: no-preference) {
  .proj-hero__title {
    animation: pe-fade-in-up 0.72s var(--ease-out) both;
  }

  .proj-hero__lead,
  .proj-hero__eyebrow {
    animation: pe-fade-in-up 0.72s var(--ease-out) 0.08s both;
  }

  .proj-hero__actions {
    animation: pe-fade-in-up 0.72s var(--ease-out) 0.16s both;
  }

  .proj-hero .btn--gold:hover,
  .proj-hero .btn--light:hover {
    transform: translateY(-3px);
  }
}

.proj-overview {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
  margin-bottom: clamp(40px, 6vw, 56px);
}

.proj-overview__lead {
  margin: 0 0 20px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.proj-overview__bullets {
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.proj-overview__bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--text-dark);
}

.proj-overview__bullets i {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.95rem;
}

.proj-overview__figure {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(11, 60, 93, 0.08);
}

.proj-overview__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.proj-overview__cta {
  justify-content: flex-start;
  margin-top: 0;
}

.proj-spec-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(22px, 3vw, 28px);
  background: linear-gradient(135deg, rgba(11, 60, 93, 0.06) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
}

.proj-spec-strip__item {
  text-align: center;
  padding: 12px 8px;
}

.proj-spec-strip__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 10px;
  border-radius: 14px;
  font-size: 1.15rem;
  color: var(--accent-gold);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.16) 0%, rgba(11, 60, 93, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.proj-spec-strip__value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.2;
}

.proj-spec-strip__label {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Project brochure download (AeroVista, Money Plant, etc.) */
.proj-hero__brochure {
  margin: 20px 0 0;
  text-align: center;
}

.proj-hero__brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.proj-hero__brochure-link:hover {
  color: var(--gold);
}

.proj-hero__brochure-link i {
  font-size: 1.05rem;
  color: rgba(212, 175, 55, 0.95);
}

.dmp-hero__brochure {
  margin: 18px 0 0;
  text-align: left;
}

.dmp-hero__brochure-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.dmp-hero__brochure-link:hover {
  color: var(--gold);
}

.dmp-hero__brochure-link i {
  font-size: 1.05rem;
  color: rgba(212, 175, 55, 0.95);
}

.proj-brochure-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 24px;
  margin-top: clamp(32px, 5vw, 44px);
  padding: clamp(20px, 3vw, 26px) clamp(22px, 3vw, 28px);
  background: linear-gradient(135deg, rgba(11, 60, 93, 0.07) 0%, rgba(212, 175, 55, 0.09) 55%, rgba(255, 255, 255, 0.92) 100%);
  border: 1px solid rgba(11, 60, 93, 0.1);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s var(--ease-out), border-color 0.3s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .proj-brochure-bar:hover {
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 175, 55, 0.28);
  }
}

.proj-brochure-bar__lead {
  flex-shrink: 0;
}

.proj-brochure-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  font-size: 1.45rem;
  color: var(--primary-deep);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.22) 0%, rgba(11, 60, 93, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 22px rgba(11, 60, 93, 0.08);
}

.proj-brochure-bar__text {
  flex: 1;
  min-width: min(100%, 220px);
}

.proj-brochure-bar__title {
  display: block;
  margin: 0 0 4px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.proj-brochure-bar__meta {
  display: block;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.proj-brochure-bar__btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proj-brochure-bar__btn i {
  font-size: 0.95rem;
}

.proj-cta-brochure {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proj-cta-brochure i {
  font-size: 1rem;
}

@media (max-width: 640px) {
  .proj-brochure-bar {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .proj-brochure-bar__lead {
    margin-inline: auto;
  }

  .proj-brochure-bar__btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
    justify-content: center;
  }
}

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

.proj-highlight-card {
  padding: 26px 22px 28px;
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), border-color 0.32s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .proj-highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 175, 55, 0.22);
  }
}

.proj-highlight-card__icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  font-size: 1.2rem;
  color: var(--primary);
  background: linear-gradient(145deg, rgba(11, 60, 93, 0.08), rgba(212, 175, 55, 0.12));
}

.proj-highlight-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

.proj-highlight-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.proj-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 32px;
}

.proj-location-card {
  padding: 24px 22px 26px;
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .proj-location-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
  }
}

.proj-location-card__icon {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 12px;
  font-size: 1.1rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
}

.proj-location-card__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-heading);
}

.proj-location-card__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.proj-location-map {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(11, 60, 93, 0.08);
  background: var(--white);
}

.proj-location-map img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 420px;
  object-fit: cover;
  object-position: center;
}

.proj-location-map__cap {
  margin: 0;
  padding: 12px 16px 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
  background: var(--muted-bg);
}

.proj-plot-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 28px;
  align-items: center;
}

.proj-plot-layout__media {
  margin: 0;
  border-radius: calc(var(--radius) + 2px);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(11, 60, 93, 0.08);
  background: var(--white);
}

.proj-plot-layout__media img {
  width: 100%;
  height: auto;
  display: block;
}

.proj-plot-layout__note {
  padding: clamp(20px, 3vw, 28px);
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
}

.proj-plot-layout__note p {
  margin: 0 0 20px;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--text-dark);
}

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

.proj-amenity-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 22px 16px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease, box-shadow 0.28s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .proj-amenity-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-card-hover);
  }
}

.proj-amenity-tile__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.25rem;
  color: var(--accent-gold);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.14) 0%, rgba(11, 60, 93, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.proj-amenity-tile__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
}

/* Project image gallery */
.project-gallery {
  max-width: 960px;
  margin-inline: auto;
}

.project-gallery__viewport {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(11, 60, 93, 0.1);
  background: #0a1620;
}

.project-gallery__track {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  transition: transform 0.5s var(--ease-out);
  will-change: transform;
}

.project-gallery__slide {
  flex: 0 0 100%;
  min-width: 0;
}

.project-gallery__figure {
  margin: 0;
}

.project-gallery__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.project-gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--white);
  background: rgba(11, 60, 93, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 0.25s ease, transform 0.25s ease;
}

.project-gallery__btn:hover {
  background: rgba(212, 175, 55, 0.85);
  color: var(--primary-deep);
  border-color: rgba(255, 255, 255, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
  .project-gallery__btn:hover {
    transform: translateY(-50%) scale(1.05);
  }
}

.project-gallery__btn--prev {
  left: 12px;
}

.project-gallery__btn--next {
  right: 12px;
}

.project-gallery__dots {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.project-gallery__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  background: rgba(11, 60, 93, 0.2);
  transition: transform 0.25s ease, background 0.25s ease;
}

.project-gallery__dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

.project-gallery__dot:hover {
  background: rgba(11, 60, 93, 0.45);
}

.proj-benefits-grid {
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

@media (max-width: 1024px) {
  .proj-overview {
    grid-template-columns: 1fr;
  }

  .proj-overview__figure {
    order: -1;
  }

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

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

  .proj-plot-layout__note {
    order: 2;
  }
}

@media (max-width: 768px) {
  .proj-hero {
    min-height: 62vh;
    padding-bottom: 48px;
  }

  .proj-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .proj-hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .proj-spec-strip {
    grid-template-columns: 1fr;
  }

  .proj-highlights-grid {
    grid-template-columns: 1fr;
  }

  .proj-location-grid {
    grid-template-columns: 1fr;
  }

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

  .project-gallery__btn {
    width: 42px;
    height: 42px;
  }

  .project-gallery__btn--prev {
    left: 8px;
  }

  .project-gallery__btn--next {
    right: 8px;
  }
}

@media (max-width: 480px) {
  .proj-amenity-grid {
    grid-template-columns: 1fr;
  }
}

/* —— Dholera Money Plant (unique layout; colors match AeroVista / site theme) —— */
.page-dmp {
  --dmp-glass: rgba(255, 255, 255, 0.09);
}

.dmp-hero {
  position: relative;
  min-height: min(84vh, 780px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 40px) 0 56px;
  overflow: hidden;
  text-align: left;
}

.dmp-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 48%;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .dmp-hero__bg {
    animation: pe-hero-zoom 24s var(--ease-out) forwards;
  }
}

.dmp-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(4, 22, 38, 0.88) 0%,
    rgba(11, 60, 93, 0.55) 45%,
    rgba(5, 18, 30, 0.92) 100%
  );
  z-index: 1;
}

.dmp-hero__accent {
  position: absolute;
  top: 0;
  right: 0;
  width: min(52%, 640px);
  height: 100%;
  background: linear-gradient(200deg, rgba(212, 175, 55, 0.12) 0%, transparent 55%);
  z-index: 1;
  pointer-events: none;
}

.dmp-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 380px);
  gap: clamp(28px, 5vw, 48px);
  align-items: end;
  width: min(1140px, 100% - 40px);
  margin-inline: auto;
}

.dmp-hero__text {
  max-width: 640px;
  padding-bottom: 8px;
}

.dmp-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
}

.dmp-hero__title {
  margin: 0 0 14px;
  font-size: clamp(2.1rem, 4.8vw, 3.15rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--white);
}

.dmp-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.62;
}

.dmp-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
  margin-top: clamp(26px, 4vw, 34px);
}

.dmp-hero__btn-secondary {
  background: var(--dmp-glass);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.dmp-hero__btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: no-preference) {
  .dmp-hero__title {
    animation: pe-fade-in-up 0.75s var(--ease-out) both;
  }

  .dmp-hero__lead,
  .dmp-hero__eyebrow {
    animation: pe-fade-in-up 0.75s var(--ease-out) 0.08s both;
  }

  .dmp-hero__actions {
    animation: pe-fade-in-up 0.75s var(--ease-out) 0.15s both;
  }

  .dmp-hero__aside {
    animation: pe-fade-in-up 0.85s var(--ease-out) 0.2s both;
  }

  .dmp-hero .btn--gold:hover,
  .dmp-hero__btn-secondary:hover {
    transform: translateY(-3px);
  }
}

.dmp-hero__aside {
  align-self: stretch;
  display: flex;
  align-items: flex-end;
}

.dmp-hero__card {
  width: 100%;
  padding: 22px 22px 20px;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(11, 60, 93, 0.48) 100%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.dmp-hero__card-label {
  margin: 0 0 14px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(212, 175, 55, 0.95);
}

.dmp-hero__card-list {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dmp-hero__card-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

.dmp-hero__card-list i {
  margin-top: 3px;
  color: rgba(212, 175, 55, 0.95);
  font-size: 0.95rem;
}

.dmp-hero__card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.dmp-hero__card-link:hover {
  color: var(--gold);
}

.dmp-section-label {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary-soft);
}

.dmp-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 52px);
  align-items: center;
}

.dmp-overview__lead {
  margin: 0 0 22px;
  font-size: 1.05rem;
  line-height: 1.72;
  color: var(--text-dark);
}

.dmp-overview__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.dmp-chip {
  display: inline-block;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--primary);
  background: rgba(11, 60, 93, 0.08);
  border: 1px solid rgba(11, 60, 93, 0.14);
  border-radius: var(--radius-pill);
}

.dmp-overview__cta {
  justify-content: flex-start;
  margin-top: 0;
}

.dmp-overview__figure {
  margin: 0;
  position: relative;
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(11, 60, 93, 0.18),
    0 0 0 1px rgba(11, 60, 93, 0.1);
}

.dmp-overview__figure::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.dmp-overview__figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.dmp-usp-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.dmp-usp-card {
  padding: 26px 24px 28px 22px;
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-left: 4px solid rgba(212, 175, 55, 0.85);
  box-shadow: var(--shadow-card);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .dmp-usp-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
  }
}

.dmp-usp-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 12px;
  font-size: 1.15rem;
  color: var(--primary);
  background: linear-gradient(145deg, rgba(11, 60, 93, 0.08), rgba(212, 175, 55, 0.12));
}

.dmp-usp-card__title {
  margin: 0 0 8px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--charcoal);
}

.dmp-usp-card__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.dmp-location {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.dmp-location__map {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(11, 60, 93, 0.1);
  background: var(--white);
}

.dmp-location__map img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 380px;
  object-fit: cover;
}

.dmp-location__map-cap {
  margin: 0;
  padding: 12px 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  background: var(--muted-bg);
  line-height: 1.5;
}

.dmp-location-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dmp-location-list__item {
  display: flex;
  gap: 16px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .dmp-location-list__item:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-card-hover);
  }
}

.dmp-location-list__icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.05rem;
  color: var(--gold);
  background: rgba(212, 175, 55, 0.12);
}

.dmp-location-list__title {
  display: block;
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  font-family: var(--font-heading);
}

.dmp-location-list__text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.dmp-plot {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 28px;
  align-items: center;
}

.dmp-plot__media {
  margin: 0;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: var(--shadow-card-hover);
  border: 1px solid rgba(11, 60, 93, 0.12);
}

.dmp-plot__media img {
  width: 100%;
  height: auto;
  display: block;
}

.dmp-plot__detail {
  padding: clamp(22px, 3vw, 30px);
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
}

.dmp-plot__list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dmp-plot__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--text-dark);
}

.dmp-plot__list i {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.9rem;
}

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

.dmp-amenity-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 22px 14px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease-out), border-color 0.28s ease, box-shadow 0.28s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .dmp-amenity-tile:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: var(--shadow-card-hover);
  }
}

.dmp-amenity-tile__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.25rem;
  color: var(--accent-gold);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.14) 0%, rgba(11, 60, 93, 0.05) 100%);
  border: 1px solid rgba(212, 175, 55, 0.22);
  box-shadow: 0 8px 22px rgba(11, 60, 93, 0.1);
}

.dmp-amenity-tile__label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
}

.dmp-roi-section {
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%) !important;
}

.dmp-roi-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.dmp-roi-card {
  position: relative;
  padding: 26px 22px 28px;
  background: linear-gradient(165deg, var(--white) 0%, #f0f4f8 100%);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.dmp-roi-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--primary-soft) 100%);
}

@media (prefers-reduced-motion: no-preference) {
  .dmp-roi-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
  }
}

.dmp-roi-card__tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(11, 60, 93, 0.08);
  border-radius: 6px;
}

.dmp-roi-card__title {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--charcoal);
}

.dmp-roi-card__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-dark);
}

@media (max-width: 1024px) {
  .dmp-hero__inner {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .dmp-hero {
    align-items: center;
    padding-bottom: 48px;
  }

  .dmp-hero__aside {
    align-items: stretch;
    max-width: 420px;
  }

  .dmp-overview {
    grid-template-columns: 1fr;
  }

  .dmp-overview__figure {
    order: -1;
  }

  .dmp-location {
    grid-template-columns: 1fr;
  }

  .dmp-plot {
    grid-template-columns: 1fr;
  }

  .dmp-usp-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .dmp-hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 32px);
  }

  .dmp-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .dmp-hero__actions .btn {
    width: 100%;
    max-width: 360px;
  }

  .dmp-roi-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 480px) {
  .dmp-amenity-grid {
    grid-template-columns: 1fr;
  }
}

.placeholder-page {
  text-align: center;
  padding: 48px 0 80px;
}

.placeholder-page p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 16px auto 0;
}

.contact-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.disclaimer-box {
  margin-top: 48px;
  padding: 24px;
  background: var(--muted-bg);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent-gold);
}

.disclaimer-box h2 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--charcoal);
}

.disclaimer-box p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.cta-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.testimonial-card {
  position: relative;
  padding: 28px 24px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  left: 20px;
  font-family: Georgia, serif;
  font-size: 2.5rem;
  line-height: 1;
  color: rgba(212, 175, 55, 0.35);
}

@media (prefers-reduced-motion: no-preference) {
  .testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-hover);
  }
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin: 0 0 12px;
  padding-top: 8px;
  color: var(--accent-warm);
  font-size: 0.85rem;
}

.testimonial-card__text {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-dark);
}

.testimonial-card__author {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
}

.testimonial-card__role {
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Lead / enquiry form card */
.lead-form-card {
  max-width: 560px;
  margin-inline: auto;
  padding: clamp(28px, 5vw, 40px);
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(11, 60, 93, 0.1);
  box-shadow: var(--shadow-card-hover);
}

.lead-form-card__head {
  text-align: center;
  margin-bottom: 24px;
}

.lead-form-card__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--primary);
}

.lead-form-card__sub {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.lead-form-card__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
  margin: 0 0 28px;
  padding: 0 0 24px;
  list-style: none;
  border-bottom: 1px solid rgba(11, 60, 93, 0.08);
}

.lead-form-card__trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
}

.lead-form-card__trust li i {
  color: var(--accent-gold);
}

.contact-form--lead .contact-form__input {
  border-radius: var(--radius);
  padding: 14px 16px;
  border: 1px solid rgba(11, 60, 93, 0.14);
  background: var(--page-bg);
  color: var(--text-dark);
  -webkit-text-fill-color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.contact-form--lead .contact-form__input::placeholder {
  color: var(--text-muted);
  opacity: 1;
}

/* Keep typed text visible when Chrome autofill recolors the field */
.contact-form--lead .contact-form__input:-webkit-autofill,
.contact-form--lead .contact-form__input:-webkit-autofill:hover,
.contact-form--lead .contact-form__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--text-dark);
  box-shadow: 0 0 0 1000px var(--page-bg) inset;
  transition: background-color 99999s ease-out;
}

.contact-form--lead .contact-form__input:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.contact-form--lead .contact-form__input:focus-visible {
  outline: none;
}

.contact-page__form-wrap.lead-form-card {
  max-width: none;
}

/* Property enquiry page (enquiry.html) — glass card, depth, interactions */
.page-enquiry .enquiry-section {
  position: relative;
  background: linear-gradient(
    168deg,
    #eceff3 0%,
    rgba(11, 60, 93, 0.06) 38%,
    #dfe6ee 100%
  );
  overflow: hidden;
}

.page-enquiry .enquiry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 15% -10%, rgba(212, 175, 55, 0.11) 0%, transparent 52%),
    radial-gradient(ellipse 70% 45% at 100% 100%, rgba(11, 60, 93, 0.09) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.page-enquiry .enquiry-section > .container {
  position: relative;
  z-index: 1;
}

.page-enquiry .lead-form-card--enquiry {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: calc(var(--radius) + 10px);
  box-shadow:
    0 4px 28px rgba(11, 60, 93, 0.09),
    0 28px 64px rgba(11, 60, 93, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .page-enquiry .lead-form-card--enquiry {
    background: rgba(255, 255, 255, 0.97);
  }
}

.page-enquiry .contact-form--enquiry .contact-form__input {
  border-radius: 14px;
  transition: border-color 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out), background-color 0.28s var(--ease-out);
  background: rgba(255, 255, 255, 0.95);
}

.page-enquiry .contact-form--enquiry .contact-form__input:hover {
  border-color: rgba(11, 60, 93, 0.22);
}

.page-enquiry .contact-form--enquiry .contact-form__input:focus,
.page-enquiry .contact-form--enquiry .contact-form__input:focus-visible {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.32), 0 10px 28px rgba(11, 60, 93, 0.1);
}

.page-enquiry .contact-form--enquiry select.contact-form__input {
  min-height: 48px;
  cursor: pointer;
}

.page-enquiry .contact-form--enquiry .contact-form__input:-webkit-autofill,
.page-enquiry .contact-form--enquiry .contact-form__input:-webkit-autofill:hover,
.page-enquiry .contact-form--enquiry .contact-form__input:-webkit-autofill:focus {
  box-shadow: 0 0 0 1000px rgba(255, 255, 255, 0.98) inset;
}

.page-enquiry .btn--enquiry-submit {
  gap: 0.55em;
  padding: 15px 28px;
  font-size: 0.95rem;
  border-radius: 14px;
  background: linear-gradient(135deg, #e4c255 0%, var(--accent-gold) 42%, #b8962e 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 6px 22px rgba(212, 175, 55, 0.42);
  position: relative;
}

.page-enquiry .btn--enquiry-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, #f0d878 0%, #e4c255 45%, var(--accent-gold) 100%);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.page-enquiry .btn--enquiry-submit span,
.page-enquiry .btn--enquiry-submit i {
  position: relative;
  z-index: 1;
}

@media (prefers-reduced-motion: no-preference) {
  .page-enquiry .btn--enquiry-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
    background-position: 100% 50%;
  }

  .page-enquiry .btn--enquiry-submit:hover::after {
    opacity: 0.38;
  }
}

.page-enquiry .enquiry-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: stretch;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(11, 60, 93, 0.12);
}

.page-enquiry .enquiry-cta__btn {
  flex: 1 1 220px;
  min-height: 48px;
  padding: 14px 22px;
  font-size: 0.92rem;
  box-shadow: 0 4px 16px rgba(11, 60, 93, 0.18);
  transition: transform var(--transition), box-shadow var(--transition);
}

@media (prefers-reduced-motion: no-preference) {
  .page-enquiry .enquiry-cta__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(11, 60, 93, 0.32);
  }
}

.page-enquiry .enquiry-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 12px;
  margin: 22px 0 0;
  padding: 20px 8px 0;
  list-style: none;
  border-top: 1px solid rgba(11, 60, 93, 0.1);
}

.page-enquiry .enquiry-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.35;
}

.page-enquiry .enquiry-trust__item i {
  font-size: 1.15rem;
  color: var(--accent-gold);
}

.page-enquiry .enquiry-privacy {
  margin: 18px 0 0;
  padding: 14px 4px 0;
  border-top: 1px solid rgba(11, 60, 93, 0.08);
  font-size: 0.78rem;
  line-height: 1.55;
  color: var(--text-muted);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.page-enquiry .enquiry-privacy i {
  flex-shrink: 0;
  margin-top: 3px;
  color: rgba(11, 60, 93, 0.55);
  font-size: 0.85rem;
}

.page-enquiry .enquiry-site-highlight {
  margin: 14px 0 0;
  padding: 14px 16px;
  font-size: 0.84rem;
  line-height: 1.55;
  color: var(--text-dark);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius);
}

.page-enquiry .enquiry-site-highlight__badge {
  display: inline-block;
  margin-right: 6px;
  padding: 2px 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary-deep);
  background: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  .page-enquiry .enquiry-trust {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-inline: 0;
  }

  .page-enquiry .enquiry-cta {
    flex-direction: column;
  }

  .page-enquiry .enquiry-cta__btn {
    flex: 1 1 auto;
    width: 100%;
    max-width: none;
  }

  .page-enquiry .lead-form-card--enquiry {
    padding: clamp(22px, 5vw, 32px);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .cards--3 {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
  }

  .footer__map-wrap {
    order: 3;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    background: rgba(11, 60, 93, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

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

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
  }

  .nav__item--dropdown > .nav__link::after {
    display: inline-block;
    margin-top: 2px;
    transform: rotate(0deg);
    transition: transform var(--transition);
  }

  .nav__item--dropdown {
    width: 100%;
    text-align: center;
  }

  .nav__item--dropdown > .nav__link {
    justify-content: center;
    width: 100%;
  }

  .nav__item--dropdown.is-open > .nav__link::after {
    transform: rotate(180deg);
  }

  .nav__dropdown {
    position: static;
    transform: none;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0;
    margin-bottom: 8px;
    transition: max-height 0.3s ease, opacity var(--transition), visibility var(--transition), padding var(--transition);
  }

  .nav__item--dropdown.is-open .nav__dropdown {
    opacity: 1;
    visibility: visible;
    max-height: 220px;
    padding: 8px 0 0;
  }

  .nav__dropdown .nav__link {
    padding: 8px 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.85);
  }

  .nav__cta {
    text-align: center;
    justify-content: center;
  }

  .highlights {
    grid-template-columns: 1fr;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }

  .section__title--left {
    text-align: center;
  }

  .about__content {
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
    margin-inline: auto;
  }

  .trust-strip__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .trust-strip__actions {
    justify-content: center;
  }
}

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

  .logo__text {
    font-size: 0.8rem;
  }

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

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

  .wa-float {
    width: 50px;
    height: 50px;
    right: 14px;
    bottom: 16px;
  }
}

/* About page */
.about-page-hero {
  position: relative;
  min-height: min(68vh, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 48px) 0 56px;
  overflow: hidden;
  text-align: center;
}

.about-page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .about-page-hero__bg {
    animation: pe-hero-zoom 32s var(--ease-out) forwards;
  }
}

.about-page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(7, 42, 66, 0.82) 0%,
    rgba(11, 60, 93, 0.45) 45%,
    rgba(4, 18, 32, 0.78) 100%
  );
}

.about-page-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.about-page-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-gold);
}

.about-page-hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.about-page-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
}

.about-page-hero__lead strong {
  color: #fbbf24;
  font-weight: 600;
}

@media (prefers-reduced-motion: no-preference) {
  .about-page-hero__eyebrow {
    animation: pe-fade-in-up 0.65s var(--ease-out) both;
  }

  .about-page-hero__title {
    animation: pe-fade-in-up 0.65s var(--ease-out) 0.08s both;
  }

  .about-page-hero__lead {
    animation: pe-fade-in-up 0.65s var(--ease-out) 0.16s both;
  }
}

.about-split {
  align-items: center;
  gap: clamp(32px, 5vw, 56px);
}

.about-split__media {
  box-shadow: var(--shadow-card-hover);
}

.about-story__eyebrow {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-warm);
  text-align: left;
}

.about-story .section__title--left {
  margin-bottom: 16px;
}

.about-story__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.stat-row.stat-row--about {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1000px;
  margin-inline: auto;
  gap: clamp(28px, 4vw, 44px);
  justify-items: center;
}

@media (max-width: 900px) {
  .stat-row.stat-row--about {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .stat-row.stat-row--about {
    grid-template-columns: 1fr;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}

.why-card {
  padding: 26px 22px;
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), border-color 0.32s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 175, 55, 0.25);
  }
}

.why-card__icon {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 14px;
  font-size: 1.2rem;
  color: var(--accent-gold);
  background: linear-gradient(160deg, rgba(212, 175, 55, 0.12), rgba(11, 60, 93, 0.04));
  border: 1px solid rgba(212, 175, 55, 0.22);
}

.why-card__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: -0.02em;
}

.why-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.testimonial-grid--about {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
  .testimonial-grid--about {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .stat-row--about .stat-item--with-icon {
    min-width: 140px;
  }
}

@media (max-width: 768px) {
  .about-story__cta {
    flex-direction: column;
    align-items: stretch;
  }

  .about-story__cta .btn {
    width: 100%;
    max-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page-hero__bg {
    animation: none !important;
  }

  .why-card:hover {
    transform: none;
  }
}

/* Dholera SIR page */
.dholera-hero {
  position: relative;
  min-height: min(72vh, 640px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 56px) 0 64px;
  overflow: hidden;
  text-align: center;
}

.dholera-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  z-index: 0;
}

@media (prefers-reduced-motion: no-preference) {
  .dholera-hero__bg {
    animation: pe-hero-zoom 20s var(--ease-out) forwards;
  }
}

.dholera-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(7, 42, 66, 0.78) 0%,
    rgba(11, 60, 93, 0.48) 45%,
    rgba(7, 26, 40, 0.85) 100%
  );
  z-index: 1;
}

.dholera-hero__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.dholera-hero__eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.dholera-hero__title {
  margin: 0 0 16px;
  font-size: clamp(1.85rem, 4.5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
}

.dholera-hero__lead {
  margin: 0;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

@media (prefers-reduced-motion: no-preference) {
  .dholera-hero__title {
    animation: pe-fade-in-up 0.7s var(--ease-out) both;
  }

  .dholera-hero__lead,
  .dholera-hero__eyebrow {
    animation: pe-fade-in-up 0.7s var(--ease-out) 0.08s both;
  }
}

.dholera-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 16px;
  margin-top: clamp(28px, 4vw, 36px);
}

@media (prefers-reduced-motion: no-preference) {
  .dholera-hero__actions {
    animation: pe-fade-in-up 0.7s var(--ease-out) 0.14s both;
  }
}

.dholera-hero .btn--gold {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.25);
}

@media (prefers-reduced-motion: no-preference) {
  .dholera-hero .btn--gold:hover {
    transform: translateY(-3px);
  }
}

.dholera-hero .btn--light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.dholera-hero .btn--light:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: no-preference) {
  .dholera-hero .btn--light:hover {
    transform: translateY(-3px);
  }
}

/* Pillar cards — overview */
.dholera-pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin-bottom: 8px;
}

.dholera-pillar-card {
  padding: 26px 22px 28px;
  background: var(--white);
  border-radius: calc(var(--radius) + 2px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out), border-color 0.32s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .dholera-pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(212, 175, 55, 0.22);
  }
}

.dholera-pillar-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: 14px;
  font-size: 1.25rem;
  color: var(--accent-gold);
  background: linear-gradient(155deg, rgba(212, 175, 55, 0.16) 0%, rgba(11, 60, 93, 0.06) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
}

.dholera-pillar-card__title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.3;
}

.dholera-pillar-card__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-dark);
}

/* Stats — card strip */
.stat-row.dholera-page-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: clamp(40px, 5vw, 56px);
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(180deg, rgba(11, 60, 93, 0.04) 0%, rgba(255, 255, 255, 0.65) 100%);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  max-width: 1000px;
  margin-inline: auto;
  justify-content: stretch;
}

.stat-row.dholera-page-stats .stat-item--with-icon {
  max-width: none;
  padding: 20px 16px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 60, 93, 0.06);
  box-shadow: 0 10px 28px rgba(11, 60, 93, 0.06);
}

.stat-row.dholera-page-stats .stat-item__icon {
  width: 62px;
  height: 62px;
  font-size: 1.4rem;
}

/* Why Dholera is the future */
.dholera-future-section {
  position: relative;
  overflow: hidden;
}

.dholera-future-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.07) 0%, transparent 55%);
  pointer-events: none;
}

.dholera-future-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  position: relative;
  z-index: 1;
}

.dholera-future-card {
  padding: 28px 24px 30px;
  background: var(--white);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(11, 60, 93, 0.08);
  border-top: 3px solid rgba(212, 175, 55, 0.75);
  box-shadow: var(--shadow-card);
  transition: transform 0.32s var(--ease-out), box-shadow 0.32s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .dholera-future-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card-hover);
  }
}

.dholera-future-card__icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--primary);
  background: linear-gradient(145deg, rgba(11, 60, 93, 0.08), rgba(212, 175, 55, 0.12));
}

.dholera-future-card__title {
  margin: 0 0 10px;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--charcoal);
}

.dholera-future-card__text {
  margin: 0;
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text-dark);
}

/* Development timeline */
.dholera-timeline {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
  max-width: 820px;
  margin-inline: auto;
  position: relative;
}

.dholera-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 8px;
  bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(11, 60, 93, 0.2) 100%);
  border-radius: 2px;
}

.dholera-timeline__item {
  position: relative;
  padding-left: 56px;
  padding-bottom: clamp(24px, 4vw, 36px);
}

.dholera-timeline__item:last-child {
  padding-bottom: 0;
}

.dholera-timeline__item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.2);
  z-index: 1;
}

.dholera-timeline__content {
  padding: 22px 24px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(11, 60, 93, 0.08);
  box-shadow: var(--shadow-card);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

@media (prefers-reduced-motion: no-preference) {
  .dholera-timeline__content:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-card-hover);
  }
}

.dholera-timeline__phase {
  display: inline-block;
  margin-bottom: 8px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(11, 60, 93, 0.07);
  border-radius: 999px;
}

.dholera-timeline__title {
  margin: 0 0 10px;
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--charcoal);
}

.dholera-timeline__text {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--text-dark);
}

/* Mid-page CTA */
.dholera-mid-cta-wrap .container {
  max-width: 900px;
}

.dholera-mid-cta {
  padding: clamp(40px, 6vw, 56px) clamp(28px, 4vw, 44px);
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(135deg, rgba(4, 28, 48, 0.95) 0%, var(--primary) 42%, #052a42 100%);
  color: var(--white);
  text-align: center;
  box-shadow:
    0 24px 56px rgba(11, 60, 93, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dholera-mid-cta__title {
  margin: 0 0 14px;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.dholera-mid-cta__text {
  margin: 0 auto 28px;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}

.dholera-mid-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 14px;
}

.dholera-mid-cta .btn--gold {
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28);
}

.dholera-mid-cta .btn--light.dholera-mid-cta__call {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.dholera-mid-cta .btn--light.dholera-mid-cta__call:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.dholera-benefits-grid {
  gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

@media (max-width: 1100px) {
  .dholera-pillar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .dholera-pillar-grid {
    grid-template-columns: 1fr;
  }

  .dholera-future-grid {
    grid-template-columns: 1fr;
  }

  .stat-row.dholera-page-stats {
    grid-template-columns: 1fr;
  }

  .dholera-hero__actions {
    flex-direction: column;
    width: 100%;
  }

  .dholera-hero__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .dholera-mid-cta__actions {
    flex-direction: column;
  }

  .dholera-mid-cta__actions .btn {
    width: 100%;
    max-width: 320px;
  }
}

.dholera-stat-row {
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(11, 60, 93, 0.12);
}

.dholera-intro-split {
  align-items: center;
}

.dholera-figure {
  margin: 0;
}

.dholera-figure__caption {
  margin: 0;
  padding: 12px 4px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.dholera-showcase {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.dholera-showcase--enhanced {
  gap: 24px;
}

.dholera-showcase--enhanced .dholera-showcase__card {
  border: 1px solid rgba(11, 60, 93, 0.07);
}

@media (prefers-reduced-motion: no-preference) {
  .dholera-showcase--enhanced .dholera-showcase__card:hover {
    transform: translateY(-6px);
  }
}

.dholera-showcase__card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}

.dholera-showcase__card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card-hover);
}

.dholera-showcase__image-wrap {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--charcoal-soft);
}

.dholera-showcase__image-wrap--contain {
  background: linear-gradient(180deg, #ececec 0%, #f7f7f7 100%);
}

.dholera-showcase__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.dholera-showcase__image-wrap--contain img {
  object-fit: contain;
  object-position: center;
  padding: 12px;
}

.dholera-showcase__card:hover .dholera-showcase__image-wrap img {
  transform: scale(1.04);
}

.dholera-showcase__body {
  padding: 22px 24px 26px;
}

.dholera-showcase__title {
  margin: 0 0 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dholera-showcase__title i {
  color: var(--gold);
  font-size: 1rem;
}

.dholera-showcase__text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-dark);
}

.dholera-showcase__text em {
  font-style: normal;
  color: var(--text-muted);
  font-size: 0.88rem;
}

.dholera-nature-banner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--white);
}

.dholera-nature-banner__media {
  min-height: 280px;
}

.dholera-nature-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.dholera-nature-banner__content {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-soft) 100%);
}

.dholera-nature-banner__title {
  margin: 0 0 14px;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}

.dholera-nature-banner__text {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.dholera-credits {
  margin: 40px 0 0;
  padding-top: 28px;
  border-top: 1px solid rgba(11, 60, 93, 0.14);
  max-width: 900px;
  margin-inline: auto;
  text-align: left;
}

.dholera-credits__lead,
.dholera-credits__list {
  margin: 0 0 14px;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.dholera-credits__list {
  margin-bottom: 0;
}

.dholera-credits a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.dholera-credits a:hover {
  color: var(--gold-hover);
}

@media (max-width: 900px) {
  .dholera-showcase {
    grid-template-columns: 1fr;
  }

  .dholera-nature-banner {
    grid-template-columns: 1fr;
  }

  .dholera-nature-banner__media {
    min-height: 220px;
    max-height: 320px;
  }

  .dholera-nature-banner__media img {
    max-height: 320px;
  }
}

@media (max-width: 480px) {
  .dholera-hero {
    min-height: 56vh;
    padding-bottom: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn:hover {
    transform: none;
  }

  .header {
    animation: none !important;
  }

  .hero__slide {
    transition: none !important;
  }

  .hero__slide,
  .dholera-hero__bg,
  .about-page-hero__eyebrow,
  .about-page-hero__title,
  .about-page-hero__lead,
  .hero__copy .hero__title,
  .hero__copy .hero__subtitle,
  .hero__title,
  .hero__subtitle,
  .hero__actions .hero__btn-primary,
  .hero__actions .hero__btn-secondary,
  .hero__quick-actions .hero__quick-card,
  .hero__trust-badges,
  .inner-hero__eyebrow,
  .inner-hero__title,
  .inner-hero__lead,
  .projects-page-hero__bg,
  .projects-page-hero__title,
  .projects-page-hero__lead,
  .projects-page-hero__eyebrow,
  .contact-page-hero__bg,
  .contact-page-hero__title,
  .contact-page-hero__lead,
  .contact-page-hero__eyebrow,
  .enquiry-page-hero__bg,
  .enquiry-page-hero__title,
  .enquiry-page-hero__lead,
  .enquiry-page-hero__eyebrow,
  .dholera-hero__title,
  .dholera-hero__lead,
  .dholera-hero__eyebrow,
  .dholera-hero__actions,
  .proj-hero__bg,
  .proj-hero__title,
  .proj-hero__lead,
  .proj-hero__eyebrow,
  .proj-hero__actions,
  .dmp-hero__bg,
  .dmp-hero__title,
  .dmp-hero__lead,
  .dmp-hero__eyebrow,
  .dmp-hero__actions,
  .dmp-hero__aside {
    animation: none !important;
  }

  .project-gallery__track {
    transition: none !important;
  }

  .dholera-pillar-card:hover,
  .dholera-future-card:hover,
  .dholera-timeline__content:hover,
  .dholera-showcase__card:hover,
  .proj-highlight-card:hover,
  .proj-location-card:hover,
  .proj-amenity-tile:hover,
  .dmp-usp-card:hover,
  .dmp-location-list__item:hover,
  .dmp-amenity-tile:hover,
  .dmp-roi-card:hover,
  .page-projects .project-detail--listing:hover .projects-listing__split,
  .page-projects .projects-listing__btn:hover,
  .page-projects .section--projects-amenities .amenity-item:hover {
    transform: none;
  }

  .page-projects .project-detail--listing:hover .projects-listing__media img {
    transform: none;
  }

  .page-projects .projects-listing__btn.btn--gold::after {
    transform: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
