/* ═══════════════════════════════════════════════════════════
   Skyline Prime Realty — 3-Color Brand System
   Blue #0A1854 · Gold #C8A96E · White #FFFFFF
   ═══════════════════════════════════════════════════════════ */
:root {
  /* Core palette */
  --blue: #0a1854;
  --blue-mid: #122a6e;
  --blue-soft: #1a3578;
  --blue-deep: #071242;
  --blue-light: #f4f6fb;
  --blue-rgb: 10, 24, 84;

  --gold: #c8a96e;
  --gold-light: #e0c992;
  --gold-dark: #9a7d4a;
  --gold-rgb: 200, 169, 110;
  --gold-pale: rgba(var(--gold-rgb), 0.14);

  --white: #ffffff;

  /* Semantic aliases (used across components) */
  --navy: var(--blue);
  --navy-mid: var(--blue-mid);
  --navy-soft: var(--blue-soft);
  --navy-deep: var(--blue-deep);
  --navy-rgb: var(--blue-rgb);
  --blue-accent: #2a4a9e;
  --blue-muted: #7284b8;
  --cream: var(--white);
  --cream-dark: var(--blue-light);
  --cream-blue: var(--blue-light);

  --text-dark: var(--blue);
  --text-body: #243b7a;
  --text-muted: #7284b8;
  --text-on-dark: var(--white);
  --text-on-dark-muted: #c5cce4;

  --surface: var(--white);
  --surface-alt: var(--blue-light);
  --surface-dark: var(--blue);

  --border: rgba(var(--blue-rgb), 0.1);
  --border-gold: rgba(var(--gold-rgb), 0.45);
  --shadow-sm: 0 2px 16px rgba(var(--blue-rgb), 0.06);
  --shadow-md: 0 8px 32px rgba(var(--blue-rgb), 0.1);
  --shadow-lg: 0 20px 60px rgba(var(--blue-rgb), 0.14);
  --shadow-gold: 0 8px 28px rgba(var(--gold-rgb), 0.35);

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Manrope", system-ui, sans-serif;

  /* Typography scale */
  --fs-base: 0.9375rem;
  --fs-sm: 0.8125rem;
  --fs-xs: 0.6875rem;
  --fs-lg: 1rem;
  --fs-xl: 1.0625rem;
  --fs-2xl: clamp(1.625rem, 3vw, 2.15rem);
  --fs-hero: clamp(1.875rem, 3.8vw, 2.75rem);
  --fs-display: clamp(1.375rem, 2.5vw, 1.75rem);
  --lh-body: 1.6;
  --lh-snug: 1.35;
  --lh-tight: 1.22;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;

  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --header-bar-h: 72px;
  --header-ribbon-h: 36px;
  --header-h: calc(var(--header-bar-h) + var(--header-ribbon-h));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--text-body);
  line-height: var(--lh-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--gold-pale);
  color: var(--navy);
}

h1, h2, h3, h4,
.section__title,
.explore-projects__title,
.proof__title,
.stitle,
.faq-title,
.modal__title,
.ft__headline,
.visit__title,
.getintouch__eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: var(--fs-hero);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
}

.hero__title em,
.hero__title span,
.section__title em,
.explore-projects__title em,
.stitle em,
.faq-title em,
.ft__headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-medium);
}

h1, h2, h3, h4,
.section__title,
.hero__title,
.explore-projects__title,
.proof__title,
.stitle,
.modal__title {
  color: var(--navy);
}

.section__tag,
.explore-projects__eyebrow,
.proof__eyebrow,
.getintouch__eyebrow,
.hero__eyebrow {
  color: var(--gold-dark);
}

.section__lead,
.explore-projects__lead,
.proof__caption {
  color: var(--blue-muted);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1240px, 92vw);
  margin-inline: auto;
}

/* ─── Scroll progress ─── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ─── Scroll Reveal Animations ─── */
[data-reveal],
[data-reveal="up"] {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition:
    opacity 0.85s var(--ease),
    transform 0.85s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

[data-reveal="left"] {
  transform: translate3d(-64px, 0, 0);
}

[data-reveal="right"] {
  transform: translate3d(64px, 0, 0);
}

[data-reveal="down"] {
  transform: translate3d(0, -36px, 0);
}

[data-reveal="scale"] {
  transform: translate3d(0, 24px, 0) scale(0.92);
}

[data-reveal="fade"] {
  transform: translate3d(0, 0, 0);
}

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

/* Stagger children polish */
[data-stagger] > [data-reveal]:nth-child(1) { --reveal-delay: 0s; }
[data-stagger] > [data-reveal]:nth-child(2) { --reveal-delay: 0.08s; }
[data-stagger] > [data-reveal]:nth-child(3) { --reveal-delay: 0.16s; }
[data-stagger] > [data-reveal]:nth-child(4) { --reveal-delay: 0.24s; }
[data-stagger] > [data-reveal]:nth-child(5) { --reveal-delay: 0.32s; }
[data-stagger] > [data-reveal]:nth-child(6) { --reveal-delay: 0.4s; }
[data-stagger] > [data-reveal]:nth-child(7) { --reveal-delay: 0.48s; }
[data-stagger] > [data-reveal]:nth-child(8) { --reveal-delay: 0.56s; }

[data-stagger="slow"] > [data-reveal]:nth-child(n) {
  --reveal-delay: calc((var(--i, 0)) * 0.12s);
}

/* Image zoom on reveal */
.image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-card img {
  transition: transform 1.4s var(--ease);
  transform: scale(1.08);
}

.is-visible .image-card img,
[data-reveal].is-visible .image-card img {
  transform: scale(1);
}

.image-card__float-badge {
  opacity: 0;
  transform: translateY(16px) scale(0.94);
  transition: opacity 0.6s var(--ease) 0.35s, transform 0.6s var(--ease) 0.35s;
}

[data-reveal].is-visible .image-card__float-badge {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hero entrance */
.hero__title,
.hero__subtitle {
  animation: heroReveal 1.1s var(--ease) backwards;
}

.hero__title { animation-delay: 0.15s; }
.hero__subtitle { animation-delay: 0.35s; }

.hero-search {
  animation: heroReveal 1s var(--ease) 0.55s backwards;
}

.hero__scroll {
  animation: heroReveal 1s var(--ease) 0.85s backwards;
}

@keyframes heroReveal {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Section header line draw */
.section__header[data-reveal].is-visible .section__tag::after {
  width: 100%;
}

.section__tag {
  position: relative;
}

.section__tag::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: var(--gold);
  margin-top: 0.5rem;
  transition: width 0.8s var(--ease) 0.2s;
}

.section__header--center .section__tag::after {
  margin-inline: auto;
}

/* Card lift on reveal */
.why-invest__card[data-reveal],
.invest__card[data-reveal],
.hot-card[data-reveal],
.dev-circle[data-reveal] {
  transition: none;
}

.why-invest__card[data-reveal].is-visible,
.invest__card[data-reveal].is-visible,
.hot-card[data-reveal].is-visible {
  animation: cardLift 0.75s var(--ease) var(--reveal-delay, 0s) both;
}

@keyframes cardLift {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dev-circle[data-reveal].is-visible {
  animation: devPop 0.65s var(--ease) var(--reveal-delay, 0s) both;
}

@keyframes devPop {
  from {
    opacity: 0;
    transform: scale(0.75) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* FAQ slide */
.faq-item[data-reveal] {
  transform: translate3d(0, 28px, 0);
}

.faq-item[data-reveal].is-visible {
  transform: translate3d(0, 0, 0);
}

/* Visit & footer tiles */
.visit__channel[data-reveal].is-visible,
.ft__tile[data-reveal].is-visible {
  animation: slideInSoft 0.75s var(--ease) var(--reveal-delay, 0s) both;
}

@keyframes slideInSoft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.visit__form-card[data-reveal="right"].is-visible {
  animation: slideInRight 0.9s var(--ease) both;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Modal entrance */
.modal:not([hidden]) .modal__panel {
  animation: modalIn 0.4s var(--ease) both;
}

.modal:not([hidden]) .modal__backdrop {
  animation: fadeIn 0.35s ease both;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.94) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Text block child stagger */
[data-reveal="right"].is-visible .about__list li {
  animation: slideInSoft 0.55s var(--ease) both;
}

[data-reveal="right"].is-visible .about__list li:nth-child(1) { animation-delay: 0.15s; }
[data-reveal="right"].is-visible .about__list li:nth-child(2) { animation-delay: 0.22s; }
[data-reveal="right"].is-visible .about__list li:nth-child(3) { animation-delay: 0.29s; }
[data-reveal="right"].is-visible .about__list li:nth-child(4) { animation-delay: 0.36s; }
[data-reveal="right"].is-visible .about__list li:nth-child(5) { animation-delay: 0.43s; }

[data-reveal="right"].is-visible .btn,
[data-reveal="left"].is-visible .btn {
  animation: heroReveal 0.7s var(--ease) 0.45s both;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal],
  [data-reveal].is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .hero__title,
  .hero__subtitle,
  .hero-search,
  .hero__scroll {
    animation: none !important;
  }

  .hero__bg img {
    transform: none !important;
  }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.4); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.3s, border-color 0.3s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--blue);
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(var(--gold-rgb), 0.5);
}

.btn--primary:hover {
  background: var(--gold-light);
  box-shadow: 0 12px 36px rgba(200, 169, 110, 0.45);
}

.btn--gold {
  background: var(--gold);
  color: var(--blue);
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  background: var(--gold-light);
}

.btn--outline {
  background: transparent;
  color: var(--text-on-dark);
  border-color: rgba(250, 248, 245, 0.45);
}

.btn--outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn--whatsapp {
  background: #25d366;
  color: #fff;
  border-color: #1ebe57;
}

.btn--whatsapp:hover { background: #1fb855; }

.btn--nav { padding: 0.55rem 1.15rem; font-size: 0.6875rem; }

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: transform 0.45s var(--ease);
}

.header--hidden { transform: translateY(-100%); }

.header-bar {
  height: var(--header-bar-h);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--gold);
}

.header--scrolled .header-bar {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(var(--blue-rgb), 0.08);
}

.header-bar__inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo, .footer__logo {
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.3s;
}

.logo:hover, .footer__logo:hover { opacity: 0.85; }

.logo img, .footer__logo img {
  height: 48px;
  width: auto;
  max-width: min(240px, 42vw);
  object-fit: contain;
}

.footer__logo img { height: 52px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.header-phone {
  font-size: 0.78rem;
  font-weight: var(--fw-medium);
  color: var(--navy);
  transition: color 0.25s;
}

.header-phone:hover { color: var(--gold-dark); }

.header-ribbon {
  height: var(--header-ribbon-h);
  background: var(--blue);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.35);
}

.header-ribbon__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.6875rem;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
}

.header-ribbon__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.pulse-dot {
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulseDot 2s ease infinite;
}

.header-ribbon__wa {
  font-weight: 600;
  color: var(--gold-light);
  transition: color 0.25s;
}

.header-ribbon__wa:hover { color: var(--white); }

.header-ribbon__link {
  color: var(--gold-light);
  transition: color 0.25s;
}

.header-ribbon__link:hover {
  color: var(--white);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 0.12s linear;
  will-change: transform;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(var(--navy-rgb), 0.55) 0%, rgba(var(--navy-rgb), 0.4) 45%, rgba(var(--navy-rgb), 0.18) 100%),
    linear-gradient(0deg, rgba(var(--navy-rgb), 0.32) 0%, transparent 45%);
}

.hero__grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border-gold);
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  color: var(--text-on-dark);
  letter-spacing: -0.015em;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(var(--navy-rgb), 0.25);
}

.hero__title em,
.hero__title span {
  color: var(--gold-light);
  font-style: italic;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  color: var(--text-on-dark-muted);
  max-width: 52ch;
  margin-bottom: 1.75rem;
  line-height: var(--lh-snug);
  font-weight: var(--fw-regular);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__aside {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-end;
}

.hero__stats {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.stat {
  background: rgba(250, 248, 245, 0.08);
  border: 1px solid rgba(250, 248, 245, 0.12);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  text-align: center;
  min-width: 110px;
}

.stat--accent {
  border-color: var(--border-gold);
  background: rgba(200, 169, 110, 0.12);
}

.stat__value {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.2;
}

.stat__label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  margin-top: 0.25rem;
}

.hero-gallery__stack {
  position: relative;
  width: min(300px, 100%);
}

.hero-gallery__img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(250, 248, 245, 0.15);
}

.hero-gallery__img--main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-gallery__img--sub {
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  width: 55%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--navy);
}

.hero-gallery__tag {
  position: absolute;
  top: 1rem;
  right: -0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-on-dark-muted);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: var(--gold);
  animation: scrollLine 2s ease infinite;
  transform-origin: top;
}

/* ─── Marquee ─── */
.marquee-band {
  background: linear-gradient(90deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-deep) 100%);
  border-block: 1px solid rgba(200, 169, 110, 0.3);
  padding: 1rem 0;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
}

.marquee__item {
  display: flex;
  align-items: center;
  padding: 0 2rem;
  white-space: nowrap;
}

.marquee__item span {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
}

.marquee__item span::before {
  content: "◆";
  color: var(--gold);
  margin-right: 1.5rem;
  font-size: 0.5rem;
  vertical-align: middle;
}

/* ─── Sections ─── */
.section {
  padding: 5rem 0;
}

.section__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}

.section__title {
  font-size: var(--fs-2xl);
}

.section__lead {
  font-size: var(--fs-lg);
  color: var(--blue-muted);
  max-width: 58ch;
  margin-top: 0.85rem;
  line-height: var(--lh-snug);
}

.section__header { margin-bottom: 3.5rem; }

.section__header--center {
  text-align: center;
}

.section__header--center .section__lead {
  margin-inline: auto;
}

.section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.section__grid--reverse .section__media { order: 2; }
.section__grid--reverse .section__text { order: 1; }

.section__text p {
  margin-bottom: 1.25rem;
  color: var(--text-body);
}

.section__text .btn { margin-top: 0.5rem; }

/* ─── Image card ─── */
.image-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.image-card__float-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.image-card__float-badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}

.image-card__float-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Showcase ─── */
.section--showcase {
  background: var(--white);
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.showcase-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  cursor: pointer;
}

.showcase-card--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 100%;
}

.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}

.showcase-card:hover img { transform: scale(1.05); }

.showcase-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(var(--navy-rgb), 0.85) 0%, rgba(var(--navy-rgb), 0.1) 60%, transparent 100%);
  transition: opacity 0.4s;
}

.showcase-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 1;
}

.showcase-card__loc {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.showcase-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 0.35rem;
}

.showcase-card--large .showcase-card__body h3 { font-size: 2rem; }

.showcase-card__body p {
  font-size: 0.9rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.75rem;
}

.showcase-card__link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color 0.25s;
}

.showcase-card__link:hover { color: var(--white); }

/* ─── Benefits ─── */
.section--benefits { background: var(--cream-dark); }

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefit-card--visual {
  position: relative;
  min-height: 260px;
}

.benefit-card--visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--benefit-img);
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transition: opacity 0.4s;
}

.benefit-card--visual:hover::before { opacity: 0.35; }

.benefit-card__content {
  position: relative;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.benefit-card__icon {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1rem;
}

.benefit-card__content h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
}

.benefit-card__content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
}

/* ─── Properties ─── */
.section--properties {
  position: relative;
  background: linear-gradient(165deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: var(--text-on-dark);
}

.properties-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(200, 169, 110, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.properties-header .section__title { color: var(--text-on-dark); }
.properties-header .section__lead { color: var(--text-on-dark-muted); }
.properties-header .section__tag { color: var(--gold-light); }

.property-showcase {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.property-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(250, 248, 245, 0.04);
  border: 1px solid rgba(250, 248, 245, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.35s;
}

.property-card:hover { border-color: var(--border-gold); }

.property-card--villa { direction: rtl; }
.property-card--villa > * { direction: ltr; }

.property-card__visual {
  position: relative;
  min-height: 320px;
}

.property-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.property-card__visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--navy-rgb), 0.3) 0%, transparent 60%);
}

.property-card__type {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  z-index: 1;
}

.property-card__num {
  position: absolute;
  bottom: 1rem;
  right: 1.25rem;
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 300;
  color: rgba(250, 248, 245, 0.08);
  line-height: 1;
  z-index: 1;
}

.property-card__body {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.property-card__body h3 {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  font-weight: 500;
  color: var(--text-on-dark);
  margin-bottom: 1rem;
}

.property-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.property-card__tags li {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid var(--border-gold);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
}

.property-card__text {
  font-size: 0.95rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.75rem;
}

.property-card__text--muted {
  font-size: 0.88rem;
  opacity: 0.75;
}

.property-card__footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.property-card__meta {
  font-size: 0.78rem;
  color: var(--text-on-dark-muted);
  letter-spacing: 0.04em;
}

/* ─── Developers ─── */
.section--developers { background: var(--white); }

.developers-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.developers-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.developers-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.developers-visual__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--navy);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-pill);
}

.developers-list {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border);
}

.developers-list__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.developers-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.developer-badge {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  transition: border-color 0.25s, background 0.25s;
}

.developer-badge:hover {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.08);
}

.developers-list ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem 1rem;
  margin-bottom: 1.25rem;
}

.developers-list ul li {
  font-size: 0.9rem;
  color: var(--text-body);
  padding-left: 1rem;
  position: relative;
}

.developers-list ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.developers-list__note {
  font-size: 0.88rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* ─── Locations ─── */
.section--locations { background: var(--cream); }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.location-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.35s var(--ease);
}

.location-card:hover { transform: translateY(-4px); }

.location-card--img::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--loc-img);
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--ease);
}

.location-card--img:hover::before { transform: scale(1.06); }

.location-card--img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(var(--navy-rgb), 0.88) 0%, rgba(var(--navy-rgb), 0.3) 100%);
}

.location-card h3,
.location-card p {
  position: relative;
  z-index: 1;
  color: var(--text-on-dark);
}

.location-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.location-card p {
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
  line-height: 1.6;
}

.location-card--featured {
  grid-column: span 2;
  min-height: 260px;
}

.location-card--featured h3 { font-size: 1.75rem; }

/* ─── Why Us ─── */
.section--why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.why-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--cream);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.why-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
  transform: translateY(-3px);
}

.why-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.65rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px solid var(--border);
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* ─── Process ─── */
.section--process { background: var(--cream-dark); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  counter-reset: step;
  position: relative;
}

.process-step {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.process-step:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.process-step__num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold-dark);
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
}

.process-step h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* ─── Visit / Contact (redesigned) ─── */
.visit {
  position: relative;
  padding: 6rem 0;
  background: var(--blue-light);
  overflow: hidden;
}

.visit__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
}

.visit__glow--left {
  top: -120px;
  left: -160px;
  background: var(--gold-light);
}

.visit__glow--right {
  bottom: -100px;
  right: -120px;
  background: #b8c4e8;
}

.visit__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.visit__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}

.visit__title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
}

.visit__lead {
  max-width: 52ch;
  margin-top: 0.85rem;
  color: var(--text-body);
  font-size: 1.02rem;
}

.visit__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.visit__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.visit__pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 2s ease infinite;
}

.visit__bento {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.5rem;
  align-items: stretch;
}

.visit__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.visit__channels {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.visit__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
}

.visit__channel:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.visit__channel--wa:hover {
  border-color: rgba(37, 211, 102, 0.4);
}

.visit__channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit__channel-icon--phone {
  background: rgba(var(--navy-rgb), 0.06);
  color: var(--navy);
}

.visit__channel-icon--wa {
  background: rgba(37, 211, 102, 0.12);
  color: #128c47;
}

.visit__channel-icon--mail {
  background: rgba(200, 169, 110, 0.15);
  color: var(--gold-dark);
}

.visit__channel-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.visit__channel-text strong {
  font-size: 0.88rem;
  color: var(--navy);
}

.visit__channel-text span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.visit__office {
  flex: 1;
  background: linear-gradient(145deg, var(--navy-mid) 0%, var(--navy) 100%);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  color: var(--text-on-dark);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid rgba(200, 169, 110, 0.2);
}

.visit__office-head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.visit__office-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(200, 169, 110, 0.2);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.visit__office-head strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.15rem;
}

.visit__office-head span {
  font-size: 0.8rem;
  color: var(--text-on-dark-muted);
}

.visit__map {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid rgba(250, 248, 245, 0.1);
}

.visit__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.visit__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold-light);
  transition: color 0.25s;
}

.visit__map-link:hover { color: var(--white); }

.visit__form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 2rem 2.25rem;
  border: 1px solid var(--border);
  box-shadow: 0 24px 64px rgba(var(--navy-rgb), 0.08);
  position: relative;
}

.visit__form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 0 0 4px 4px;
}

.visit__form-head {
  margin-bottom: 1.5rem;
}

.visit__form-head h3 {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.visit__form-head p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.visit-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.visit-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.visit-form__field--full {
  grid-column: 1 / -1;
}

.visit-form__field span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.visit-form__field input,
.visit-form__field select {
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: border-color 0.25s, background 0.25s, box-shadow 0.25s;
}

.visit-form__field input::placeholder {
  color: #a0a5b8;
}

.visit-form__field input:focus,
.visit-form__field select:focus {
  outline: none;
  background: var(--white);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.15);
}

.visit-form__submit {
  width: 100%;
  gap: 0.65rem;
  padding: 1rem;
  font-size: 0.85rem;
}

.visit-form__note {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.85rem;
}

/* ─── Get In Touch (Section 9 design) ─── */
.visit--getintouch {
  padding: 2.5rem 0 3.25rem;
  background: var(--blue-light) !important;
  overflow-x: hidden;
}

.getintouch {
  padding-top: 0.5rem;
  min-width: 0;
  max-width: 100%;
}

.contact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: center;
  padding: 1.35rem 2rem;
  margin-bottom: 1.75rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  box-shadow: var(--shadow-sm);
}

.contact-strip__item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--navy);
  line-height: var(--lh-snug);
  transition: color 0.2s ease;
}

a.contact-strip__item:hover {
  color: var(--gold-dark);
}

.contact-strip__icon {
  flex-shrink: 0;
  color: var(--navy);
}

.contact-strip__address {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-strip__address [data-contact-address-hint] {
  display: block;
}

.getintouch__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  align-items: stretch;
  min-width: 0;
}

.getintouch__formPane {
  background: var(--white);
  border-radius: 18px;
  border: 1px solid rgba(var(--navy-rgb), 0.08);
  padding: 2.25rem 2rem 1.85rem;
  box-shadow: 0 18px 60px rgba(var(--navy-rgb), 0.06);
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.getintouch-form {
  min-width: 0;
  max-width: 100%;
}

.getintouch__eyebrow {
  font-size: var(--fs-display);
  margin-bottom: 1rem;
}

.getintouch-form__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  min-width: 0;
}

.getintouch-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 0.95rem;
  min-width: 0;
}

.getintouch-form__field span {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-muted);
}

.getintouch-form__field input,
.getintouch-form__field select {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(var(--blue-rgb), 0.15);
  padding: 0 1rem;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  color: var(--blue);
}

.getintouch-form__field input:focus,
.getintouch-form__field select:focus {
  outline: none;
  border-color: rgba(200, 169, 110, 0.85);
  box-shadow: 0 0 0 3px rgba(200, 169, 110, 0.2);
}

.getintouch-form__success {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 10px;
  margin: 0.2rem 0 0.85rem;
}

.getintouch-form__check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.16);
  color: #16a34a;
  font-weight: 900;
  font-size: 0.95rem;
}

.getintouch-form__brand {
  margin-left: auto;
  font-weight: 900;
  letter-spacing: 0.06em;
  font-size: 0.7rem;
  color: rgba(var(--navy-rgb), 0.6);
}

.getintouch-disclaimer {
  font-size: 0.78rem;
  color: var(--blue-muted);
  line-height: 1.45;
  margin: 0 0 1rem;
}

.getintouch-form__submit {
  width: 100%;
  justify-content: center;
  padding: 0.95rem 1.2rem;
}

.getintouch__imagePane {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(var(--blue-rgb), 0.1);
  box-shadow: var(--shadow-md);
  background: var(--blue);
  min-height: 460px;
}

.getintouch__imageCrop {
  position: absolute;
  inset: 0;
}

.getintouch__imageCrop img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.getintouch__searchbar {
  margin-top: 1.2rem;
  background: var(--blue);
  border-radius: 0 0 12px 12px;
  border-top: 2px solid var(--gold);
  max-width: 100%;
  overflow: hidden;
}

.hero-search--bar {
  margin-top: 0;
  padding: 1.1rem 1.25rem;
}

.hero-search--bar .hero-search__filters {
  justify-content: stretch;
  flex-wrap: nowrap;
  gap: 0.6rem;
}

.hero-search--bar .hero-search__field {
  flex: 1 1 0;
  min-width: 0;
  max-width: none;
}

.hero-search--bar .hero-search__submit {
  flex-shrink: 0;
  align-self: stretch;
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}

@media (max-width: 980px) {
  .getintouch__grid { grid-template-columns: 1fr; }
  .getintouch__imagePane { min-height: 320px; }
  .hero-search--bar .hero-search__filters { flex-wrap: wrap; }
  .contact-strip { grid-template-columns: 1fr; gap: 1rem; padding: 1.25rem 1.35rem; }
}

@media (max-width: 768px) {
  .visit--getintouch {
    padding: 2rem 0 2.25rem;
  }

  .getintouch__formPane {
    padding: 1.35rem 1rem 1.25rem;
    border-radius: 14px;
  }

  .getintouch__eyebrow {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    margin-bottom: 0.85rem;
  }

  .getintouch-form__row2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .getintouch-form__field input,
  .getintouch-form__field select {
    font-size: 16px;
  }

  .getintouch__imagePane {
    min-height: 240px;
    border-radius: 14px;
  }

  .getintouch__searchbar {
    margin-top: 1rem;
  }

  .hero-search--bar {
    padding: 0.85rem;
  }

  .hero-search--bar .hero-search__filters {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-search--bar .hero-search__submit {
    width: 100%;
  }

  .visit--getintouch {
    padding-bottom: 5rem;
  }
}

/* Modal form fields (shared) */
.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.contact-form__field input,
.contact-form__field select {
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s;
}

.contact-form__field input:focus,
.contact-form__field select:focus {
  outline: none;
  border-color: var(--gold);
}

/* ─── FAQ ─── */
.section--faq {
  background: var(--white);
}

.faq-title {
  font-size: var(--fs-2xl);
}

.faq-title em {
  color: var(--gold-dark);
}

.section--faq .section__header {
  margin-bottom: 2.75rem;
}

.faq-list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.3s;
}

.faq-item[open] { border-color: var(--border-gold); }

.faq-item summary {
  padding: 1rem 1.25rem;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.25s;
}

.faq-item[open] summary {
  color: var(--gold-dark);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--gold-dark); }

.faq-item p {
  padding: 0 1.25rem 1rem;
  font-size: var(--fs-sm);
  color: var(--text-muted);
  line-height: var(--lh-body);
}

/* ─── Footer — Brand Blue ─── */
.ft {
  position: relative;
  background: linear-gradient(165deg, var(--blue-mid) 0%, var(--blue) 55%, var(--blue-deep) 100%);
  color: var(--text-on-dark-muted);
  padding-top: 0;
  overflow: hidden;
  border-top: 3px solid var(--gold);
}

.ft__curve {
  height: 64px;
  background: var(--blue-light);
  border-radius: 0 0 50% 50% / 0 0 28px 28px;
  margin-bottom: -1px;
}

.ft__watermark {
  position: absolute;
  bottom: -0.12em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(8rem, 22vw, 18rem);
  font-weight: 700;
  color: rgba(var(--navy-rgb), 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: 0.08em;
  line-height: 1;
}

.ft__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.ft__hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: end;
  padding: 3.5rem 0 2.5rem;
  position: relative;
  z-index: 1;
}

.ft__logo {
  display: inline-block;
  line-height: 0;
  margin-bottom: 1.25rem;
}

.ft__logo img {
  height: 52px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.ft__tagline {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  color: var(--text-on-dark-muted);
  max-width: 36ch;
}

.ft__headline {
  font-size: clamp(1.5rem, 3.2vw, 2.25rem);
  color: var(--white);
  margin-bottom: 1.35rem;
}

.ft__headline em {
  color: var(--gold-light);
}

.ft__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ft__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.45rem;
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
}

.ft__btn:hover { transform: translateY(-2px); }

.ft__btn--gold {
  background: var(--gold);
  color: var(--blue);
  box-shadow: 0 8px 32px rgba(var(--gold-rgb), 0.25);
}

.ft__btn--gold:hover {
  background: var(--gold-light);
}

.ft__btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.ft__btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  background: rgba(var(--gold-rgb), 0.1);
}

.ft__nav-wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 2.5rem;
}

.ft__nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.25rem 0;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ft__nav a {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  padding: 0.35rem 1.1rem;
  transition: color 0.25s;
  position: relative;
}

.ft__nav a:not(:last-child)::after {
  content: "·";
  position: absolute;
  right: -0.1rem;
  color: rgba(200, 169, 110, 0.4);
  pointer-events: none;
}

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

.ft__tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 2.5rem 0;
  position: relative;
  z-index: 1;
}

.ft__tile {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem 1.65rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: background 0.35s, border-color 0.35s, transform 0.35s var(--ease);
}

a.ft__tile:hover {
  background: rgba(var(--gold-rgb), 0.12);
  border-color: rgba(var(--gold-rgb), 0.45);
  transform: translateY(-3px);
}

.ft__tile-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.ft__tile strong {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: var(--fw-medium);
  color: var(--white);
  line-height: 1.35;
}

.ft__tile-hint {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  margin-top: 0.15rem;
}

.ft__ticker {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.08);
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ft__ticker-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ftTicker 35s linear infinite;
}

.ft__ticker-track span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

.ft__ticker-track span::before {
  content: "◆ ";
  color: var(--gold);
  opacity: 0.5;
}

@keyframes ftTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .ft__ticker-track { animation: none; }
}

.ft__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0 2rem;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}

.ft__copy {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
}

.ft__rera {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: var(--radius-pill);
}

.ft__top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  cursor: pointer;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s, transform 0.35s, color 0.25s;
}

.ft__top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

.ft__top svg {
  width: 32px;
  height: 32px;
  padding: 8px;
  border: 1px solid rgba(250, 248, 245, 0.12);
  border-radius: 50%;
  transition: border-color 0.25s, background 0.25s;
}

.ft__top:hover svg {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.1);
}

/* WhatsApp FAB */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.wa-fab:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.55);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__aside { align-items: flex-start; }
  .hero__stats { justify-content: flex-start; }
  .hero-gallery { display: none; }
  .hero__scroll { display: none; }

  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .showcase-card--large { grid-column: span 2; grid-row: span 1; min-height: 360px; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .location-card--featured { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .section__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .section__grid--reverse .section__media { order: 0; }

  .visit__bento { grid-template-columns: 1fr; }
  .ft__hero { grid-template-columns: 1fr; gap: 2rem; }
  .ft__tiles { grid-template-columns: 1fr 1fr; }
  .ft__tiles .ft__tile:last-child { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .header-phone { display: none; }

  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; }

  .showcase-grid { grid-template-columns: 1fr; }
  .showcase-card--large { grid-column: span 1; min-height: 320px; }

  .benefits-grid { grid-template-columns: 1fr; }
  .property-card { grid-template-columns: 1fr; }
  .property-card--villa { direction: ltr; }
  .property-card__visual { min-height: 240px; }

  .locations-grid { grid-template-columns: 1fr; }
  .location-card--featured { grid-column: span 1; }

  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }

  .visit__top { flex-direction: column; align-items: flex-start; }
  .visit-form__grid { grid-template-columns: 1fr; }
  .ft__tiles { grid-template-columns: 1fr; }
  .ft__nav a { padding: 0.35rem 0.75rem; font-size: 0.75rem; }
  .ft__bottom { flex-direction: column; text-align: center; }
  .ft__actions { width: 100%; }
  .ft__btn { flex: 1; min-width: 140px; }

  .developers-list ul { grid-template-columns: 1fr; }

  .wa-fab { bottom: 1rem; right: 1rem; width: 50px; height: 50px; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero { padding-top: calc(var(--header-h) + 2rem); }
  .hero__stats { flex-direction: column; width: 100%; }
  .stat { width: 100%; }
  .header-actions .btn--nav { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   Design Doc — New Sections
   ═══════════════════════════════════════════════════════════ */

.hero__inner--centered {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--header-h) - 4rem);
  text-align: center;
}

.hero__content--wide {
  max-width: 960px;
  width: 100%;
}

.hero__inner--centered .hero__subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-search {
  margin-top: 2rem;
}

.hero-search__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: stretch;
}

.hero-search__field {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(var(--blue-rgb), 0.45);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  min-width: 150px;
  flex: 1;
  max-width: 185px;
}

.hero-search__icon {
  color: var(--gold-light);
  flex-shrink: 0;
  display: flex;
}

.hero-search__field select,
.hero-search__field input {
  flex: 1;
  width: 100%;
  min-width: 0;
  background: transparent;
  border: none;
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-regular);
  outline: none;
}

.hero-search__field select {
  cursor: pointer;
  appearance: none;
}

.hero-search__field input::placeholder {
  color: rgba(250, 248, 245, 0.55);
}

.hero-search__field select option {
  background: var(--navy);
  color: var(--text-on-dark);
}

.hero-search__submit {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--blue);
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.65rem 1.5rem;
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  transition: background 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.hero-search__submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(200, 169, 110, 0.45);
}

/* Developer circles */
.section--developers {
  background: var(--white);
}

.dev-circles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 1.5rem;
  margin-top: 2.5rem;
}

.dev-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  text-align: center;
}

.dev-circle__ring {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.35s;
}

.dev-circle:hover .dev-circle__ring {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.dev-circle__logo {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  color: var(--navy);
  line-height: 1.2;
  text-align: center;
}

.dev-circle__logo small {
  font-family: var(--font-sans);
  font-size: 0.5rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.1em;
}

.dev-circle__logo--damac {
  font-style: italic;
  font-family: var(--font-sans);
  font-weight: 800;
}

.dev-circle__logo--danube {
  font-style: italic;
  font-family: var(--font-sans);
}

.dev-circle__name {
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
}

/* Why Invest */
.section--why-invest {
  background: var(--blue-light);
}

.why-invest__intro {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-body);
}

.why-invest__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-invest__card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: var(--white);
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.35s, border-color 0.35s;
}

.why-invest__card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-gold);
}

.why-invest__icon {
  color: var(--gold);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.why-invest__card h3 {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
}

.why-invest__cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* About */
.section--about {
  background: var(--blue-light);
  border-top: 1px solid rgba(var(--gold-rgb), 0.35);
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.35);
}

.about__subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  font-style: italic;
}

/* Balanced split — image + text equal height */
.section__grid--balanced {
  align-items: stretch;
}

.section__grid--balanced .section__media,
.section__grid--balanced .section__text {
  display: flex;
  min-height: 0;
}

.image-card--balanced {
  flex: 1;
  width: 100%;
  display: flex;
}

.image-card--balanced img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  aspect-ratio: unset;
  object-fit: cover;
}

.about-invest-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow: var(--shadow-md);
  min-height: 460px;
}

.about-invest-panel__head .section__tag {
  margin-bottom: 0.5rem;
}

.about-invest-panel__head .section__title {
  margin-bottom: 0.5rem;
}

.about-invest-panel__intro {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-body);
  margin-bottom: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-invest-panel__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin: 0;
}

.about-invest-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  flex: 1;
}

.about-invest-panel__card {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.65rem 0.7rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.about-invest-panel__card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-sm);
}

.about-invest-panel__icon {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--gold);
  line-height: 1;
  margin-top: 0.2rem;
}

.about-invest-panel__card h4 {
  font-family: var(--font-sans);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0.2rem;
}

.about-invest-panel__card p {
  font-size: 0.68rem;
  line-height: 1.45;
  color: var(--text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-invest-panel__foot {
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.about-invest-panel__foot p {
  font-size: 0.72rem;
  line-height: 1.5;
  color: var(--text-body);
  margin: 0 !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-invest-panel__foot strong {
  color: var(--navy);
  font-weight: 700;
}

.about-invest-panel__grid--why {
  align-content: start;
}

.about-invest-panel__card--compact {
  align-items: center;
  padding: 0.55rem 0.7rem;
}

.about-invest-panel__card--compact h4 {
  margin-bottom: 0;
  font-size: 0.74rem;
}

.about-invest-panel__foot--cta {
  margin-top: auto;
  padding-top: 0.85rem;
}

.about-invest-panel__foot--cta .btn {
  margin-top: 0;
}

.about__list {
  list-style: none;
  margin: 1rem 0 1.25rem;
}

.about__list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.about__list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.6rem;
  top: 0.45rem;
}

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  margin-top: 1.25rem;
}

.btn--outline-dark:hover {
  background: var(--navy);
  color: var(--gold-light);
  border-color: var(--gold);
}

.image-card__float-badge--rera {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
  color: var(--text-on-dark);
  padding: 1rem 1.35rem;
  border-bottom: 3px solid var(--gold);
  text-align: center;
  z-index: 2;
}

.image-card__float-badge--rera strong {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-weight: 600;
  color: var(--gold-light);
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.image-card__float-badge--rera span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-on-dark-muted);
  opacity: 1;
}

/* Global HQ */
.section--global {
  background: var(--blue-light);
}

.section__title--sm {
  font-size: var(--fs-display);
}

.global__address {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.global__network-label {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--navy);
}

.global__locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
}

.global__loc {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding-left: 0.75rem;
  border-left: 2px solid var(--gold);
}

.global__flag {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  min-width: 1.5rem;
}

.global__loc strong {
  display: block;
  color: var(--navy);
  font-size: 0.92rem;
}

.global__loc span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Associated Companies */
.partners-final {
  padding: 5rem 0;
  background: var(--white);
  overflow: hidden;
}

.sec-hdr-center {
  text-align: center;
  margin-bottom: 2.75rem;
}

.stitle {
  font-size: var(--fs-2xl);
}

.stitle em {
  color: var(--gold-dark);
}

.carousel-viewport {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.carousel-viewport:hover .carousel-track {
  animation-play-state: paused;
}

.carousel-track {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  width: max-content;
  animation: partnersMarquee 38s linear infinite;
  padding: 0.5rem 0;
}

@keyframes partnersMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

.p-card {
  flex: 0 0 auto;
  width: min(240px, 42vw);
  height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 1.35rem;
  background: var(--white);
  border: 1px solid rgba(var(--navy-rgb), 0.08);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(var(--navy-rgb), 0.05);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.35s var(--ease);
}

.p-card:hover {
  border-color: var(--border-gold);
  box-shadow: 0 10px 28px rgba(var(--navy-rgb), 0.08);
  transform: translateY(-3px);
}

.p-card img {
  display: block;
  max-width: 100%;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 1rem;
  }

  .carousel-viewport {
    mask-image: none;
    -webkit-mask-image: none;
    overflow: visible;
  }

  .p-card[aria-hidden="true"] {
    display: none;
  }
}

/* Invest section */
.section--invest {
  background: var(--cream);
}

.invest__intro,
.invest__footer {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.invest__subhead {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
  text-align: center;
  margin: 2rem 0 1.5rem;
}

.invest__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.invest__card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: box-shadow 0.35s;
}

.invest__card:hover {
  box-shadow: var(--shadow-sm);
}

.invest__card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.invest__card p {
  font-size: 0.9rem;
  line-height: 1.65;
}

.invest__footer {
  margin-top: 2.5rem;
  text-align: left;
}

.invest__footer h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.invest__closing {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Hot Properties Slider */
.section--hot {
  background: var(--white);
}

.hot-slider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.hot-slider__track-wrap {
  flex: 1;
  overflow: hidden;
}

.hot-slider__track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.5s var(--ease);
}

.hot-slider__nav {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s;
}

.hot-slider__nav:hover {
  background: var(--navy);
  color: var(--text-on-dark);
  border-color: var(--navy);
}

.hot-card {
  flex: 0 0 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
  border: 1px solid var(--border);
}

.hot-card:hover,
.hot-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  outline: none;
}

.hot-card__img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

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

.hot-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
}

.hot-card__dev {
  position: absolute;
  bottom: 2.5rem;
  left: 0.75rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--gold-dark);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
}

.hot-card__delivery {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  background: var(--blue);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  padding: 0.3rem 0.55rem;
  border-radius: 4px;
}

.hot-card__body {
  padding: 1.1rem 1.25rem 1.25rem;
}

.hot-card__body h3 {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.hot-card__loc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.hot-card__meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-body);
  margin-bottom: 0.5rem;
}

.hot-card__price {
  font-size: 0.85rem;
}

.hot-card__price strong {
  color: var(--navy);
  font-size: 1rem;
}

/* Explore projects — premium editorial grid */
.explore-projects {
  position: relative;
  padding: 5rem 0;
  background: var(--white);
  overflow: hidden;
}

.explore-projects__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 45% at 15% 20%, rgba(200, 169, 110, 0.16) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 75%, rgba(var(--navy-rgb), 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.explore-projects__header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.75rem;
}

.explore-projects__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}

.explore-projects__title {
  font-size: var(--fs-2xl);
  margin-bottom: 0.65rem;
}

.explore-projects__title em {
  color: var(--gold-dark);
}

.explore-projects__lead {
  font-size: var(--fs-lg);
  color: var(--text-muted);
  line-height: var(--lh-snug);
}

.explore-projects__tabs-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  margin-bottom: 2.25rem;
}

.explore-projects__tabs {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem;
  background: var(--blue-light);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
}

.explore-projects__tabs::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.explore-projects__tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0.55rem 1.15rem;
  cursor: pointer;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  transition: color 0.3s, background 0.35s var(--ease), box-shadow 0.35s;
}

.explore-projects__tab:hover {
  color: var(--navy);
}

.explore-projects__tab.is-active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}

.explore-projects__panels {
  position: relative;
  z-index: 1;
}

.explore-projects__panel {
  display: none;
}

.explore-projects__panel.is-active {
  display: block;
  animation: explorePanelIn 0.5s var(--ease) both;
}

@keyframes explorePanelIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.explore-projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.explore-projects__footer {
  margin-top: 2.5rem;
  text-align: center;
}

.explore-projects__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 2rem;
  background: var(--navy);
  color: var(--text-on-dark);
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--navy);
  box-shadow: 0 12px 36px rgba(var(--navy-rgb), 0.18);
  transition: transform 0.35s var(--ease), background 0.3s, border-color 0.3s, box-shadow 0.35s;
}

.explore-projects__cta:hover {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(var(--navy-rgb), 0.12);
}

.explore-projects__cta svg {
  transition: transform 0.35s var(--ease);
}

.explore-projects__cta:hover svg {
  transform: translateX(4px);
}

/* Premium property cards inside explore grid */
.explore-projects .hot-card {
  flex: none;
  width: 100%;
  border: 1px solid rgba(var(--navy-rgb), 0.06);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(var(--navy-rgb), 0.05);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s, border-color 0.35s;
}

.explore-projects .hot-card:hover,
.explore-projects .hot-card:focus-visible {
  transform: translateY(-8px);
  border-color: var(--border-gold);
  box-shadow: 0 24px 56px rgba(var(--navy-rgb), 0.14);
}

.explore-projects .hot-card__img {
  height: 280px;
}

.explore-projects .hot-card__img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(var(--navy-rgb), 0.05) 0%,
    rgba(var(--navy-rgb), 0.15) 45%,
    rgba(var(--navy-rgb), 0.82) 100%
  );
  pointer-events: none;
  z-index: 1;
}

.explore-projects .hot-card__img img {
  transition: transform 0.7s var(--ease);
}

.explore-projects .hot-card:hover .hot-card__img img {
  transform: scale(1.06);
}

.explore-projects .hot-card__badge {
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(200, 169, 110, 0.35);
}

.explore-projects .hot-card__delivery {
  top: 1rem;
  right: 1rem;
  bottom: auto;
  z-index: 2;
  background: rgba(var(--navy-rgb), 0.82);
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(200, 169, 110, 0.25);
  backdrop-filter: blur(6px);
}

.explore-projects .hot-card__dev {
  position: absolute;
  left: 1rem;
  bottom: 3.6rem;
  z-index: 2;
  background: transparent;
  color: var(--gold-light);
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  padding: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.explore-projects .hot-card__img-title {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  margin: 0;
  color: var(--text-on-dark);
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.2;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: color 0.3s;
}

.explore-projects .hot-card:hover .hot-card__img-title {
  color: var(--gold-light);
}

.explore-projects .hot-card__body {
  padding: 1.15rem 1.25rem 1.3rem;
  border-top: 1px solid rgba(var(--navy-rgb), 0.06);
}

.explore-projects .hot-card__loc {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
}

.explore-projects .hot-card__loc::before {
  content: "";
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7085' stroke-width='2'%3E%3Cpath d='M20 10c0 6-8 12-8 12s-8-6-8-12a8 8 0 0116 0Z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E") center/contain no-repeat;
}

.explore-projects .hot-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(var(--navy-rgb), 0.06);
}

.explore-projects .hot-card__meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.76rem;
  color: var(--text-body);
  font-weight: 500;
}

.explore-projects .hot-card__meta span:first-child::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7085' stroke-width='2'%3E%3Cpath d='M2 4v16M2 8h18a2 2 0 012 2v10M2 17h20M6 8v9'/%3E%3C/svg%3E") center/contain no-repeat;
}

.explore-projects .hot-card__meta span:last-child::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b7085' stroke-width='2'%3E%3Cpath d='m3 9 9-7 9 7v11a2 2 0 01-2 2H5a2 2 0 01-2-2z'/%3E%3Cpolyline points='9 22 9 12 15 12 15 22'/%3E%3C/svg%3E") center/contain no-repeat;
}

.explore-projects .hot-card__price {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.explore-projects .hot-card__price strong {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.explore-projects .hot-card__price strong::after {
  content: "";
  display: block;
  width: 2rem;
  height: 2px;
  background: var(--gold);
  margin-top: 0.25rem;
}

.explore-projects .hot-card__price::after {
  content: "Enquire →";
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-dark);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s, transform 0.35s var(--ease);
}

.explore-projects .hot-card:hover .hot-card__price::after {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 1024px) {
  .explore-projects__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .explore-projects { padding: 4.5rem 0; }
  .explore-projects__tabs { width: 100%; justify-content: flex-start; }
  .explore-projects__grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .explore-projects .hot-card__img { height: 240px; }
  .explore-projects .hot-card__price::after { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .explore-projects__panel.is-active {
    animation: none;
  }
}

/* Proof — editorial spotlight testimonials */
.proof {
  position: relative;
  padding: 5rem 0;
  background: var(--blue-light);
  overflow: hidden;
}

.proof__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 55%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(var(--gold-rgb), 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.proof__shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.35fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.proof__eyebrow {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.65rem;
}

.proof__title {
  font-size: var(--fs-2xl);
  margin-bottom: 1.5rem;
}

.proof__score {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.5rem;
}

.proof__score-num {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: var(--fw-semibold);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.proof__score-stars {
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
  color: var(--gold);
}

.proof__caption {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  max-width: 100%;
  line-height: var(--lh-snug);
  margin-bottom: 1.5rem;
}

.proof__stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.proof__stats li {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.proof__stats strong {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  font-weight: var(--fw-semibold);
  color: var(--navy);
  min-width: 3.5rem;
}

.proof__stats span {
  font-size: var(--fs-sm);
  color: var(--text-muted);
}

.proof__stage {
  position: relative;
  background: linear-gradient(145deg, var(--blue-mid) 0%, var(--blue) 55%, var(--blue-deep) 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  border-radius: 28px;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.75rem, 3.5vw, 2.75rem) 2rem;
  box-shadow: 0 32px 80px rgba(var(--blue-rgb), 0.22);
  outline: none;
}

.proof__stage:focus-visible {
  box-shadow: 0 32px 80px rgba(var(--blue-rgb), 0.22), 0 0 0 3px var(--gold-light);
}

.proof__deco {
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  font-family: var(--font-serif);
  font-size: clamp(6rem, 14vw, 9rem);
  line-height: 1;
  color: var(--gold);
  opacity: 0.1;
  pointer-events: none;
  user-select: none;
}

.proof__viewport {
  position: relative;
  display: grid;
  grid-template: 1fr / 1fr;
  margin-bottom: 2rem;
}

.proof__slide {
  grid-area: 1 / 1;
  position: relative;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition:
    opacity 0.55s var(--ease),
    transform 0.55s var(--ease),
    visibility 0.55s;
  pointer-events: none;
}

.proof__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.proof__slide.is-exit {
  opacity: 0;
  visibility: visible;
  transform: translateY(-14px);
}

.proof__slide p {
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 1.8vw, 1.125rem);
  font-weight: var(--fw-regular);
  font-style: normal;
  line-height: var(--lh-snug);
  color: var(--text-on-dark);
  padding-top: 1.25rem;
  padding-bottom: 0.25rem;
}

.proof__meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(250, 248, 245, 0.1);
}

.proof__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--navy);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transition: transform 0.4s var(--ease);
}

.proof__stage.is-switching .proof__avatar {
  transform: scale(0.88);
}

.proof__who {
  flex: 1;
  min-width: 0;
}

.proof__who strong {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-on-dark);
  margin-bottom: 0.15rem;
}

.proof__who span {
  font-size: 0.75rem;
  color: var(--text-on-dark-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.proof__nav {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.proof__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(250, 248, 245, 0.15);
  background: rgba(250, 248, 245, 0.05);
  color: var(--text-on-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.proof__arrow:hover {
  background: rgba(200, 169, 110, 0.15);
  border-color: rgba(200, 169, 110, 0.4);
  color: var(--gold-light);
}

.proof__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.proof__chip {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: rgba(250, 248, 245, 0.06);
  color: var(--text-on-dark-muted);
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s var(--ease);
}

.proof__chip span {
  display: block;
  line-height: 1;
}

.proof__chip:hover {
  background: rgba(250, 248, 245, 0.12);
  color: var(--text-on-dark);
}

.proof__chip.is-active {
  border-color: var(--gold);
  background: rgba(200, 169, 110, 0.12);
  color: var(--gold-light);
  transform: scale(1.08);
}

.proof__bar {
  position: absolute;
  bottom: 0;
  left: 2rem;
  right: 2rem;
  height: 3px;
  background: rgba(250, 248, 245, 0.08);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.proof__bar-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: inherit;
}

.proof__bar-fill.is-running {
  animation: proofProgress 7s linear forwards;
}

@keyframes proofProgress {
  from { width: 0%; }
  to { width: 100%; }
}

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

  .proof__aside {
    text-align: center;
  }

  .proof__caption {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .proof__stats {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .proof__stats li {
    border-top: none;
    padding-top: 0;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.2rem;
  }
}

@media (max-width: 768px) {
  .proof__stage {
    padding: 1.75rem 1.25rem 2rem;
  }

  .proof__slide p {
    font-size: clamp(1.05rem, 4.2vw, 1.25rem);
    line-height: 1.55;
    padding-top: 1.25rem;
  }

  .proof__viewport {
    margin-bottom: 1.5rem;
  }

  .proof__meta {
    padding-bottom: 1.25rem;
  }
}

@media (max-width: 520px) {
  .proof__nav {
    display: none;
  }

  .proof__rail {
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .proof__bar-fill.is-running {
    animation: none;
    width: 100%;
  }

  .proof__slide {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    margin-bottom: 1.5rem;
  }

  .proof__slide:not(:first-child) {
    display: none;
  }

  .proof__viewport {
    display: block;
  }
}

/* Consultation popup */
.modal--consult .modal__backdrop {
  background: rgba(var(--navy-rgb), 0.72);
  backdrop-filter: blur(8px);
}

.consult-panel {
  width: min(480px, 100%);
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  box-shadow: 0 28px 80px rgba(var(--navy-rgb), 0.28), var(--shadow-gold);
}

.consult-panel__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 50%;
  background: rgba(var(--white), 0.12);
  color: var(--white);
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
}

.consult-panel__close:hover {
  background: rgba(var(--white), 0.22);
  transform: scale(1.05);
}

.consult-panel__hero {
  position: relative;
  padding: 1.65rem 1.75rem 1.35rem;
  padding-right: 3.25rem;
  background: linear-gradient(145deg, var(--blue-deep) 0%, var(--blue) 55%, var(--blue-mid) 100%);
  color: var(--white);
  border-bottom: 3px solid var(--gold);
}

.consult-panel__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(var(--gold-rgb), 0.18), transparent 55%);
  pointer-events: none;
}

.consult-panel__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem;
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(var(--gold-rgb), 0.12);
  border: 1px solid rgba(var(--gold-rgb), 0.35);
  border-radius: var(--radius-pill);
}

.pulse-dot--sm {
  width: 6px;
  height: 6px;
}

.consult-panel__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.5vw, 1.85rem);
  font-weight: 500;
  line-height: var(--lh-tight);
  margin-bottom: 0.5rem;
  color: var(--white);
}

.consult-panel__lead {
  position: relative;
  z-index: 1;
  font-size: var(--fs-sm);
  line-height: 1.55;
  color: var(--text-on-dark-muted);
  max-width: 36ch;
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 1.75rem 1.75rem;
  background: var(--white);
}

.consult-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.consult-form__field span {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.consult-form__field input,
.consult-form__field select {
  padding: 0.9rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  color: var(--navy);
  background: var(--blue-light);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.consult-form__field input:focus,
.consult-form__field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(var(--gold-rgb), 0.15);
}

.consult-form__field input::placeholder {
  color: var(--text-muted);
  opacity: 0.75;
}

.consult-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
  padding: 0.88rem 1.5rem;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-gold);
}

.consult-form__submit:hover {
  transform: translateY(-1px);
}

.consult-form__note {
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
  color: var(--text-muted);
}

.modal--consult:not([hidden]) .consult-panel {
  animation: modalIn 0.45s var(--ease) both;
}

@media (max-width: 520px) {
  .consult-panel__hero,
  .consult-form {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

/* Modal */
.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(var(--navy-rgb), 0.65);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: min(440px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal--consult .modal__panel {
  display: flex;
  flex-direction: column;
  width: min(460px, calc(100vw - 2rem));
  max-height: calc(100dvh - 2rem);
  padding: 0;
  overflow: hidden;
}

.modal--consult .consult-panel__hero {
  flex-shrink: 0;
}

.modal--consult .consult-form {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal--consult .consult-form__field {
  margin-bottom: 0;
}

.modal--consult .consult-form__field input,
.modal--consult .consult-form__field select {
  padding: 0.78rem 0.95rem;
}

.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
}

.modal__title {
  font-size: var(--fs-xl);
  margin-bottom: 0.35rem;
}

.modal__subtitle {
  font-size: var(--fs-sm);
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.btn--full {
  width: 100%;
  margin-top: 0.5rem;
}

/* Responsive — new sections */
@media (max-width: 1024px) {
  .dev-circles { grid-template-columns: repeat(4, 1fr); }
  .invest__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hero-search__filters { flex-direction: column; align-items: stretch; }
  .hero-search__field { max-width: none; min-width: 0; }
  .hero-search__submit { width: 100%; }

  .hero__inner--centered {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }

  .hero-search {
    margin-top: 1.5rem;
  }

  .hero-search__filters {
    gap: 0.75rem;
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.6rem);
    margin-bottom: 1rem;
  }

  .hero__subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    max-width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .section__grid--balanced {
    gap: 1.75rem;
  }

  .image-card--balanced img {
    min-height: 260px;
  }

  .image-card__float-badge {
    bottom: 1rem;
    right: 1rem;
    left: auto;
    padding: 0.85rem 1.1rem;
  }

  .about-invest-panel {
    padding: 1.15rem;
    gap: 0.75rem;
  }

  .dev-circles { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .dev-circle__ring { width: 110px; height: 110px; }

  .why-invest__grid { grid-template-columns: 1fr; }
  .invest__grid { grid-template-columns: 1fr; }
  .global__locations { grid-template-columns: 1fr; }

  .image-card--balanced img,
  .about-invest-panel {
    min-height: auto;
  }

  .about-invest-panel__grid {
    grid-template-columns: 1fr;
  }

  .about-invest-panel__intro,
  .about-invest-panel__card p,
  .about-invest-panel__foot p {
    -webkit-line-clamp: unset;
    display: block;
    overflow: visible;
  }

  .hot-card { flex: 0 0 260px; }
  .explore-projects .hot-card { flex: 0 0 auto !important; scroll-snap-align: unset !important; }
  .hot-slider__nav { display: none; }
  .hot-slider__track-wrap { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .hot-slider__track { transform: none !important; }
  .hot-card { scroll-snap-align: start; }
  .explore-projects .hot-card { scroll-snap-align: unset !important; }
}

@media (max-width: 480px) {
  .dev-circles { grid-template-columns: repeat(2, 1fr); }
  .dev-circle__ring { width: 95px; height: 95px; }
  .dev-circle__logo { font-size: 0.85rem; }
}
