/* ==========================================================================
   Propkals — Premium frontend
   ========================================================================== */

:root {
  /* Propkals brand: deep navy + metallic gold */
  --bg: #f8f9fb;
  --bg-soft: #eef1f6;
  --bg-elevated: #ffffff;
  --ink: #0b1a2e;
  --ink-muted: #4a5568;
  --ink-faint: #7a8699;
  --navy: #0b1f3a;
  --navy-deep: #061525;
  --navy-soft: #16345a;
  --gold: #c4a35a;
  --gold-soft: #d4b76e;
  --gold-pale: rgba(196, 163, 90, 0.14);
  /* aliases kept so existing rules keep working */
  --forest: var(--navy);
  --forest-deep: var(--navy-deep);
  --forest-soft: var(--navy-soft);
  --bronze: var(--gold);
  --bronze-soft: var(--gold-soft);
  --bronze-pale: var(--gold-pale);
  --line: rgba(11, 31, 58, 0.08);
  --line-strong: rgba(11, 31, 58, 0.14);
  --shadow: 0 10px 30px rgba(11, 31, 58, 0.06);
  --shadow-hover: 0 16px 40px rgba(11, 31, 58, 0.1);
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 78px;
  --container: 1180px;
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wa: #25d366;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Hide CodeIgniter debug toolbar (flame icon) on public pages */
#debug-icon,
#debug-bar,
#toolbarContainer {
  display: none !important;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background-color: var(--bg);
  background-image:
    radial-gradient(rgba(11, 31, 58, 0.035) 0.6px, transparent 0.6px),
    radial-gradient(rgba(196, 163, 90, 0.04) 0.7px, transparent 0.7px);
  background-size: 3px 3px, 7px 7px;
  background-position: 0 0, 1px 2px;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--forest);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}

a:hover {
  color: var(--bronze);
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }

p { margin: 0 0 1rem; }

ul, ol { margin: 0 0 1rem; padding-left: 1.2rem; }

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: 2.75rem 0;
}

.section--tight {
  padding: 2rem 0;
}

.section--forest {
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-deep) 100%);
  color: #f4f1eb;
}

.section--forest h2,
.section--forest h3,
.section--forest .section-eyebrow {
  color: #f7f5f2;
}

.section--soft {
  background: rgba(255, 255, 255, 0.45);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 1.6rem;
  text-align: center;
}

.section-head--left {
  margin-left: 0;
  text-align: left;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.section-lead {
  color: var(--ink-muted);
  font-size: 1.05rem;
  margin: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--forest);
  color: #f7f5f2;
  box-shadow: 0 8px 20px rgba(31, 58, 46, 0.18);
}

.btn-primary:hover {
  background: var(--forest-soft);
  color: #fff;
}

.btn-secondary {
  background: var(--bronze);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--bronze-soft);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: rgba(247, 245, 242, 0.55);
  color: #f7f5f2;
}

.btn-outline:hover {
  background: rgba(247, 245, 242, 0.1);
  color: #fff;
}

.btn-outline-dark {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--ink);
}

.btn-outline-dark:hover {
  border-color: var(--forest);
  color: var(--forest);
  background: rgba(31, 58, 46, 0.04);
}

.btn-ghost {
  background: transparent;
  color: var(--forest);
  padding-inline: 0.5rem;
}

.btn-sm {
  min-height: 40px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

/* Cards */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: linear-gradient(135deg, #d9d2c5 0%, #b8c4b4 45%, #6d8575 100%);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease);
}

.card:hover .card-media img {
  transform: scale(1.04);
}

.card-body {
  padding: 1.25rem 1.35rem 1.5rem;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--bronze-pale);
  color: var(--bronze);
}

.badge-status {
  background: rgba(31, 58, 46, 0.1);
  color: var(--forest);
}

.card-title {
  margin-bottom: 0.35rem;
  font-size: 1.45rem;
}

.card-title a {
  color: inherit;
}

.card-title a:hover {
  color: var(--forest);
}

.card-location,
.card-excerpt,
.card-price {
  font-size: 0.95rem;
  color: var(--ink-muted);
  margin: 0 0 0.45rem;
}

.card-price {
  color: var(--forest);
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: 0.75rem;
}

.card-actions {
  margin-top: 1rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background:
    linear-gradient(135deg, rgba(31, 58, 46, 0.18), rgba(154, 123, 79, 0.22)),
    linear-gradient(160deg, #cfc7b8, #8fa094 55%, #314a3c);
}

/* Grid */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 960px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ==========================================================================
   Classic dual-state header
   - On load: tall, elegant, transparent on home
   - On scroll: compact solid white bar
   ========================================================================== */
:root {
  --header-h: 108px;
  --header-h-scrolled: 80px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 0;
  box-shadow: none;
  transition:
    top 0.35s var(--ease),
    left 0.35s var(--ease),
    right 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease),
    border-radius 0.35s var(--ease);
}

.header-accent {
  display: none;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  transition: min-height 0.35s var(--ease);
}

/* ----- ON LOAD (top of page): same overlay header on every page ----- */
.site-header:not(.is-scrolled) {
  background: linear-gradient(180deg, rgba(6, 21, 37, 0.55) 0%, rgba(6, 21, 37, 0.18) 70%, transparent 100%);
}

.page-inner .site-header:not(.is-scrolled) {
  background:
    linear-gradient(180deg, rgba(6, 21, 37, 0.55) 0%, rgba(6, 21, 37, 0.18) 70%, transparent 100%),
    linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  z-index: 2;
}

.brand img {
  height: 92px;
  width: auto;
  max-width: min(280px, 70vw);
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.28));
  transition: height 0.35s var(--ease), filter 0.35s var(--ease);
}

.nav-toggle {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(11, 31, 58, 0.18);
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #fff;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.site-header:not(.is-scrolled) .nav-toggle {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--navy);
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease), background 0.3s var(--ease);
}

.site-header:not(.is-scrolled) .nav-toggle span {
  background: #fff;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 36px rgba(11, 31, 58, 0.12);
  padding: 0.85rem 0 1.15rem;
}

.site-nav.is-open {
  display: block;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.nav-list > li > a,
.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.85rem 1rem;
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 0;
  background: transparent;
  border: 0;
  font-family: var(--font-body);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-list > li > a:hover,
.nav-list > li > a.active,
.nav-dropdown-toggle:hover,
.nav-dropdown-toggle.active {
  color: var(--gold);
  background: rgba(196, 163, 90, 0.08);
}

.nav-list > li > a.active::after,
.nav-dropdown-toggle.active::after {
  content: none;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-menu {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0 0.5rem 0.75rem;
  display: none;
}

.nav-dropdown.is-open .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.65rem 1rem;
  color: var(--ink-muted);
  border-radius: 6px;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 500;
}

.nav-dropdown-menu a:hover {
  color: var(--navy);
  background: rgba(196, 163, 90, 0.1);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 58, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--navy);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}

.icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.btn-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1.25rem;
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.btn-nav-cta:hover {
  background: transparent;
  color: var(--gold);
  transform: translateY(-1px);
}

/* Top-of-page: light nav over overlay (desktop). Mobile panel stays dark-on-white. */
@media (min-width: 1024px) {
  .site-header:not(.is-scrolled) .nav-list > li > a,
  .site-header:not(.is-scrolled) .nav-dropdown-toggle {
    color: rgba(255, 255, 255, 0.92);
  }

  .site-header:not(.is-scrolled) .nav-list > li > a:hover,
  .site-header:not(.is-scrolled) .nav-list > li > a.active,
  .site-header:not(.is-scrolled) .nav-dropdown-toggle:hover,
  .site-header:not(.is-scrolled) .nav-dropdown-toggle.active {
    color: var(--gold-soft);
    background: transparent;
  }
}

.site-header:not(.is-scrolled) .btn-nav-cta {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.site-header:not(.is-scrolled) .btn-nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ----- ON SCROLL: navy bar, white text, bottom corners only ----- */
.site-header.is-scrolled {
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-soft) 100%);
  border: 0;
  border-bottom: 0;
  border-radius: 0 0 48px 48px;
  box-shadow:
    0 14px 36px rgba(6, 21, 37, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: visible;
}

.site-header.is-scrolled .header-accent {
  display: none;
}

.site-header.is-scrolled .header-inner {
  min-height: var(--header-h-scrolled);
  padding-inline: 0.35rem;
}

.site-header.is-scrolled .brand img {
  height: 122px;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.32));
}

.site-header.is-scrolled .nav-list > li > a,
.site-header.is-scrolled .nav-dropdown-toggle {
  color: #fff;
}

.site-header.is-scrolled .nav-list > li > a:hover,
.site-header.is-scrolled .nav-list > li > a.active,
.site-header.is-scrolled .nav-dropdown-toggle:hover,
.site-header.is-scrolled .nav-dropdown-toggle.active {
  color: var(--gold-soft);
  background: transparent;
}

.site-header.is-scrolled .icon-btn {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .icon-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(196, 163, 90, 0.12);
}

.site-header.is-scrolled .btn-nav-cta {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  border-radius: 999px;
}

.site-header.is-scrolled .btn-nav-cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
}

.site-header.is-scrolled .nav-toggle {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
}

.site-header.is-scrolled .nav-toggle span {
  background: #fff;
}

/* Mobile menu under scrolled bar */
@media (max-width: 1023px) {
  .site-header.is-scrolled .site-nav {
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 36px 36px;
    background: linear-gradient(160deg, var(--navy-deep), var(--navy));
    border: 0;
    border-bottom: 0;
    box-shadow: 0 16px 36px rgba(6, 21, 37, 0.28);
  }

  .site-header.is-scrolled .site-nav .nav-dropdown-menu a {
    color: rgba(255, 255, 255, 0.78);
  }

  .site-header.is-scrolled .site-nav .nav-dropdown-menu a:hover {
    color: var(--gold-soft);
    background: rgba(196, 163, 90, 0.12);
  }
}

@media (max-width: 575px) {
  .site-header.is-scrolled {
    border-radius: 0 0 36px 36px;
  }
}

/* Desktop nav */
@media (min-width: 1024px) {
  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
  }

  .brand {
    justify-self: start;
    align-self: center;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: stretch;
    justify-self: center;
    position: static;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .nav-list {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0.1rem;
    height: 100%;
  }

  .nav-list > li {
    display: flex;
    align-items: stretch;
  }

  .nav-list > li > a,
  .nav-dropdown-toggle {
    width: auto;
    padding: 0.55rem 1.05rem;
    position: relative;
    align-self: stretch;
  }

  .nav-list > li > a::after,
  .nav-dropdown-toggle::after {
    content: "";
    position: absolute;
    left: 1.05rem;
    right: 1.05rem;
    bottom: 0.2rem;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.28s var(--ease);
  }

  .nav-list > li > a:hover::after,
  .nav-list > li > a.active::after,
  .nav-dropdown-toggle:hover::after,
  .nav-dropdown-toggle.active::after {
    transform: scaleX(1);
  }

  .nav-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    width: 250px;
    top: 100%;
    height: 1.5rem;
    z-index: 1;
  }

  .nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 250px;
    padding: 0.75rem 0.65rem 0.65rem;
    margin-top: 0;
    background: #fff;
    border: 1px solid rgba(11, 31, 58, 0.08);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(11, 31, 58, 0.12);
    display: block;
    z-index: 20;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transform-origin: top center;
    overflow: visible;
    transition:
      opacity 160ms ease,
      visibility 160ms ease,
      transform 160ms ease;
    transition-delay: 120ms;
  }

  .nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 2.15rem;
    width: 14px;
    height: 14px;
    background: #fff;
    border-left: 1px solid rgba(11, 31, 58, 0.08);
    border-top: 1px solid rgba(11, 31, 58, 0.08);
    transform: rotate(45deg);
    z-index: 21;
  }

  .site-header.is-scrolled .nav-dropdown-menu {
    margin-top: 0;
    border-radius: 12px;
    border: 1px solid rgba(196, 163, 90, 0.25);
    overflow: visible;
  }

  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0ms;
  }

  .header-actions {
    display: inline-flex;
    justify-self: end;
    align-self: center;
  }

  .mobile-cta {
    display: none !important;
  }
}

.mobile-cta {
  margin: 0.75rem 1rem 0;
}

/* Offset page content under fixed header */
.page-inner #main-content {
  padding-top: var(--header-h);
}

.page-home #main-content {
  padding-top: 0;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #f7f5f2;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(180deg, rgba(6, 21, 37, 0.45) 0%, rgba(11, 31, 58, 0.42) 40%, rgba(6, 21, 37, 0.9) 100%),
    url("https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--header-h) + 2.5rem) 0 7.5rem;
}

.hero-copy {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 0.35rem;
  line-height: 0.95;
}

.hero-title {
  max-width: none;
  margin: 0 auto 0.85rem;
  color: #f7f5f2;
  font-size: clamp(1.9rem, 4vw, 3rem);
}

.hero-subtitle {
  max-width: 38rem;
  margin: 0 auto 1.75rem;
  color: rgba(247, 245, 242, 0.86);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0;
  justify-content: center;
}

/* Search anchored to banner footer, centered */
.hero-search {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 1rem 1.75rem;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-search-inner {
  width: 100%;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.hero-search .search-box {
  pointer-events: auto;
}

@keyframes searchRiseFromFooter {
  0% {
    opacity: 0;
    transform: translateY(120%);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.search-box {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.97);
  color: var(--ink);
  border-radius: 999px;
  padding: 0.45rem;
  box-shadow:
    0 18px 40px rgba(6, 21, 37, 0.28),
    0 0 0 1px rgba(196, 163, 90, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.55);
  animation: searchRiseFromFooter 1600ms cubic-bezier(0.22, 1, 0.36, 1) 250ms both;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
  will-change: transform, opacity;
}

.search-box:hover {
  box-shadow:
    0 22px 48px rgba(6, 21, 37, 0.34),
    0 0 0 1px rgba(196, 163, 90, 0.4);
  transform: translateY(-2px);
}

.search-box-grid {
  display: grid;
  gap: 0.35rem;
}

.search-field {
  position: relative;
  min-width: 0;
}

.search-field .search-icon {
  position: absolute;
  left: 0.9rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--gold);
  pointer-events: none;
  z-index: 1;
}

.search-field .search-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.search-field input,
.search-field select {
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 0.95rem;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), color 0.3s var(--ease);
}

.search-field:first-child input {
  padding-left: 2.35rem;
}

.search-field input::placeholder {
  color: rgba(11, 31, 58, 0.45);
}

.search-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath stroke='%230b1f3a' stroke-width='1.6' d='M1.2 1.2 6 6l4.8-4.8'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.2rem;
  cursor: pointer;
}

.search-field input:hover,
.search-field select:hover {
  background: rgba(11, 31, 58, 0.04);
}

.search-field input:focus,
.search-field select:focus {
  outline: none;
  background: rgba(196, 163, 90, 0.1);
  box-shadow: inset 0 0 0 1px rgba(196, 163, 90, 0.55);
}

.search-field--action {
  display: flex;
}

.btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  min-height: 46px;
  padding: 0.65rem 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.btn-search svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.btn-search:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(196, 163, 90, 0.35);
}

.form-control {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(11, 31, 58, 0.12);
}

textarea.form-control {
  min-height: 130px;
  resize: vertical;
}

@media (max-width: 767px) {
  .hero-content {
    padding-bottom: 9rem;
  }

  .hero-search {
    padding-bottom: 1.15rem;
  }

  .search-box {
    border-radius: 22px;
    max-width: 420px;
    padding: 0.65rem;
  }

  .search-box-grid {
    gap: 0.45rem;
  }

  .search-field input,
  .search-field select,
  .btn-search {
    border-radius: 14px;
    background: rgba(11, 31, 58, 0.03);
  }
}

@media (min-width: 768px) {
  .search-box {
    padding: 0.4rem 0.4rem 0.4rem 0.55rem;
  }

  .search-box-grid {
    grid-template-columns: 1.25fr 1fr 1fr auto;
    align-items: center;
  }

  .search-field:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 22%;
    bottom: 22%;
    width: 1px;
    background: rgba(11, 31, 58, 0.1);
  }

  .search-field--action::after {
    display: none;
  }
}

/* Explore filters */
.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-weight: 500;
  transition: all 0.25s var(--ease);
}

.filter-chip:hover,
.filter-chip.is-active {
  background: var(--forest);
  border-color: var(--forest);
  color: #f7f5f2;
}

/* Feature / why us */
/* ---------- Professional services showcase ---------- */
.services-section {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(196, 163, 90, 0.12), transparent 42%),
    linear-gradient(180deg, #f7f4ee 0%, #eef2f7 55%, #f8f9fb 100%);
}

.services-section .section-head {
  margin-bottom: 1.35rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.15rem;
  align-items: stretch;
}

.service-tile {
  height: 100%;
  min-height: 100%;
}

.service-tile__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow:
    0 10px 24px rgba(11, 31, 58, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease,
    border-color 420ms ease;
}

.service-tile__link:hover {
  transform: translateY(-6px);
  border-color: rgba(196, 163, 90, 0.45);
  box-shadow:
    0 18px 36px rgba(11, 31, 58, 0.14),
    0 0 0 1px rgba(196, 163, 90, 0.18);
}

.service-tile__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(11, 31, 58, 0.12), rgba(196, 163, 90, 0.16)),
    #d9e0ea;
}

.service-tile__media img,
.service-tile__media .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-tile__link:hover .service-tile__media img {
  transform: scale(1.06);
}

.service-tile__sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(6, 21, 37, 0.35) 100%);
  pointer-events: none;
}

.service-tile__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.85rem;
  flex: 1;
  padding: 1.15rem 1.15rem 1.25rem;
  background:
    linear-gradient(180deg, #fff 0%, #fbf9f4 100%);
  border-top: 1px solid rgba(196, 163, 90, 0.18);
  min-height: 118px;
}

.service-tile__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.service-tile__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.service-tile__cta::after {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: width 320ms ease;
}

.service-tile__link:hover .service-tile__cta::after {
  width: 28px;
}

@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 799px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .service-tile__title {
    font-size: 1.2rem;
  }
}

@media (max-width: 519px) {
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }
}

.feature-card {
  padding: 1.6rem;
  height: 100%;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bronze-pale);
  color: var(--forest);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}

/* Stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.stat-item {
  text-align: center;
  padding: 1.25rem 0.75rem;
}

.stat-value {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1;
  color: var(--bronze-soft);
  margin-bottom: 0.4rem;
}

.stat-label {
  color: rgba(247, 245, 242, 0.78);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Testimonials */
.testimonial-card {
  padding: 1.6rem;
  height: 100%;
}

.testimonial-text {
  font-size: 1.05rem;
  color: var(--ink-muted);
  margin: 0.85rem 0 1.25rem;
}

.testimonial-author {
  font-weight: 600;
  margin: 0;
}

.testimonial-role {
  color: var(--ink-faint);
  font-size: 0.9rem;
  margin: 0.15rem 0 0;
}

.stars {
  color: var(--bronze);
  letter-spacing: 0.08em;
}

.star-empty {
  opacity: 0.35;
}

/* CTA banner */
.cta-banner {
  border-radius: 22px;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(31, 58, 46, 0.96), rgba(22, 42, 33, 0.92)),
    radial-gradient(circle at top right, rgba(154, 123, 79, 0.35), transparent 45%);
  color: #f7f5f2;
  display: grid;
  gap: 1.5rem;
  align-items: center;
  box-shadow: var(--shadow-hover);
}

.cta-banner h2 {
  color: #f7f5f2;
  margin-bottom: 0.5rem;
}

.cta-banner p {
  color: rgba(247, 245, 242, 0.82);
  margin: 0;
  max-width: 36rem;
}

.cta-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (min-width: 860px) {
  .cta-banner {
    grid-template-columns: 1.4fr auto;
  }
}

/* About blurb */
.about-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-visual {
  min-height: 280px;
  border-radius: 20px;
  overflow: hidden;
  background: #0b1f3a;
  box-shadow: var(--shadow);
}

.about-visual img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .about-split {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
  }

  .about-visual,
  .about-visual img {
    min-height: 420px;
  }
}

/* About page banner */
.ab-banner {
  position: relative;
  color: #fff;
  min-height: min(72vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #061525;
}

.ab-banner__media {
  position: absolute;
  inset: 0;
}

.ab-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  display: block;
  transform: scale(1.05);
  animation: ab-banner-ken 20s ease-in-out infinite alternate;
}

.ab-banner__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 37, 0.3) 0%, rgba(6, 21, 37, 0.88) 100%),
    linear-gradient(95deg, rgba(6, 21, 37, 0.8) 0%, rgba(6, 21, 37, 0.3) 55%, transparent 100%);
}

.ab-banner__frame {
  position: absolute;
  inset: 1.35rem 1.35rem auto auto;
  width: min(26vw, 260px);
  height: min(40vh, 300px);
  border: 1px solid rgba(196, 163, 90, 0.45);
  pointer-events: none;
}

.ab-banner__content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 2.75rem;
  max-width: 760px;
}

.ab-banner__crumbs .breadcrumb {
  margin-bottom: 1.15rem;
}

.ab-banner__crumbs .breadcrumb,
.ab-banner__crumbs .breadcrumb a,
.ab-banner__crumbs .breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
}

.ab-banner__crumbs .breadcrumb a:hover {
  color: var(--gold-soft);
}

.ab-banner__crumbs .breadcrumb li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.38);
}

.ab-banner__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.ab-banner__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 3.85rem);
  font-weight: 600;
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.02em;
}

.ab-banner__lead {
  margin: 0 0 1.45rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.65;
}

.ab-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.ab-banner__ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.ab-banner__ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.ab-banner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.ab-banner__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 163, 90, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.ab-banner__pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

@keyframes ab-banner-ken {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (max-width: 720px) {
  .ab-banner {
    min-height: min(68vh, 540px);
  }

  .ab-banner__frame {
    display: none;
  }

  .ab-banner__content {
    padding-top: 4.5rem;
  }

  .ab-banner__media img {
    animation: none;
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ab-banner__media img {
    animation: none;
  }
}

/* Breadcrumb */
.page-hero {
  padding: 3.5rem 0 2.25rem;
  background:
    linear-gradient(180deg, rgba(31, 58, 46, 0.06), transparent),
    rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid var(--line);
}

/* Services listing banner */
.sv-banner {
  position: relative;
  color: #fff;
  min-height: min(72vh, 620px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #061525;
}

.sv-banner__media {
  position: absolute;
  inset: 0;
}

.sv-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  transform: scale(1.05);
  animation: sv-banner-ken 20s ease-in-out infinite alternate;
}

.sv-banner__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 37, 0.28) 0%, rgba(6, 21, 37, 0.86) 100%),
    linear-gradient(95deg, rgba(6, 21, 37, 0.78) 0%, rgba(6, 21, 37, 0.28) 55%, transparent 100%);
}

.sv-banner__frame {
  position: absolute;
  inset: 1.35rem 1.35rem auto auto;
  width: min(26vw, 260px);
  height: min(40vh, 300px);
  border: 1px solid rgba(196, 163, 90, 0.45);
  pointer-events: none;
}

.sv-banner__content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 2.75rem;
  max-width: 760px;
}

.sv-banner__crumbs .breadcrumb {
  margin-bottom: 1.15rem;
}

.sv-banner__crumbs .breadcrumb,
.sv-banner__crumbs .breadcrumb a,
.sv-banner__crumbs .breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
}

.sv-banner__crumbs .breadcrumb a:hover {
  color: var(--gold-soft);
}

.sv-banner__crumbs .breadcrumb li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.38);
}

.sv-banner__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.sv-banner__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5.5vw, 3.85rem);
  font-weight: 600;
  line-height: 1.06;
  color: #fff;
  letter-spacing: -0.02em;
}

.sv-banner__lead {
  margin: 0 0 1.45rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.65;
}

.sv-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.sv-banner__ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.sv-banner__ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.sv-banner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sv-banner__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 163, 90, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.sv-banner__pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

@keyframes sv-banner-ken {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.12) translate3d(-1.2%, -0.8%, 0);
  }
}

@media (max-width: 720px) {
  .sv-banner {
    min-height: min(68vh, 540px);
  }

  .sv-banner__frame {
    display: none;
  }

  .sv-banner__content {
    padding-top: 4.5rem;
  }

  .sv-banner__media img {
    animation: none;
    transform: scale(1.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sv-banner__media img {
    animation: none;
  }
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.85rem;
  font-size: 0.9rem;
  color: var(--ink-faint);
}

.breadcrumb a {
  color: var(--ink-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: var(--ink-faint);
}

/* Projects listing */
.listing-layout {
  display: grid;
  gap: 1.75rem;
}

.filters-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

.filters-panel h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.filters-form {
  display: grid;
  gap: 0.9rem;
}

.filters-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.35rem;
}

.listing-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.listing-count {
  color: var(--ink-muted);
  margin: 0;
}

@media (min-width: 960px) {
  .listing-layout {
    grid-template-columns: 280px 1fr;
    align-items: start;
  }

  .filters-panel {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

/* Project detail */
.gallery {
  display: grid;
  gap: 0.75rem;
}

.gallery-main {
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #d9d2c5, #6d8575);
}

.gallery-main img,
.gallery-thumbs img,
.floorplan-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.gallery-thumbs a,
.gallery-thumbs button {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  display: block;
  background: #d9d2c5;
}

.gallery-thumbs a.is-active,
.gallery-thumbs button.is-active {
  border-color: var(--forest);
}

.detail-layout {
  display: grid;
  gap: 2rem;
}

.detail-aside {
  display: grid;
  gap: 1.25rem;
}

.detail-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
}

.detail-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--forest);
  margin: 0.35rem 0 1rem;
}

.amenity-list,
.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.amenity-list li,
.highlight-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink-muted);
}

.amenity-list li::before,
.highlight-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--bronze);
}

.floorplan-grid {
  display: grid;
  gap: 1rem;
}

.floorplan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.floorplan-card .card-body {
  padding: 1rem 1.15rem;
}

.map-embed {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 280px;
  background: var(--bg-soft);
}

.map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}

@media (min-width: 640px) {
  .floorplan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .detail-layout {
    grid-template-columns: 1.55fr 0.85fr;
    align-items: start;
  }

  .detail-aside {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-faint);
  margin-top: 0.5rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.alert {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.alert-success {
  background: rgba(46, 125, 50, 0.08);
  border-color: rgba(46, 125, 50, 0.2);
  color: #1f4d24;
}

.alert-error {
  background: rgba(139, 45, 45, 0.08);
  border-color: rgba(139, 45, 45, 0.18);
  color: #6b2d2d;
}

.alert-info {
  background: rgba(31, 58, 46, 0.06);
  border-color: rgba(31, 58, 46, 0.12);
  color: var(--forest);
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 28, 22, 0.55);
  backdrop-filter: blur(3px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 480px);
  max-height: calc(100vh - 2rem);
  overflow: auto;
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
}

body.modal-open {
  overflow: hidden;
}

/* Pagination */
.pagination-wrap {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li a,
.pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: 10px;
  border: 1px solid var(--line-strong);
  background: #fff;
  color: var(--ink);
  font-weight: 500;
}

.pagination li.active > a,
.pagination li.active > span,
.pagination li a:hover {
  background: var(--forest);
  border-color: var(--forest);
  color: #fff;
}

.pagination li.disabled span {
  opacity: 0.45;
}

/* Contact / about extras */
.contact-layout {
  display: grid;
  gap: 1.75rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.contact-info-list li {
  display: grid;
  gap: 0.2rem;
}

.contact-info-list strong {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bronze);
}

.team-card {
  text-align: center;
  padding: 1.5rem 1.25rem;
}

.team-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  background: linear-gradient(145deg, #cfc7b8, #6d8575);
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.values-list span {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--bronze-pale);
  color: var(--forest);
  font-weight: 500;
  font-size: 0.92rem;
}

.vmv-grid {
  display: grid;
  gap: 1.25rem;
}

.vmv-card {
  padding: 1.6rem;
  height: 100%;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

  .vmv-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CMS content */
.prose {
  max-width: 720px;
}

.prose h2,
.prose h3 {
  margin-top: 1.5rem;
}

.prose p,
.prose li {
  color: var(--ink-muted);
}

.prose img {
  border-radius: 14px;
  margin: 1.25rem 0;
}

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: rgba(248, 249, 251, 0.82);
  padding: 4rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #f8f9fb;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.footer-logo {
  height: 130px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  border-radius: 10px;
  padding: 0.4rem 0.65rem;
}

.footer-tagline {
  margin: 0.35rem 0 0.85rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col h4 {
  color: #f7f5f2;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-links a {
  color: rgba(247, 245, 242, 0.75);
}

.footer-links a:hover {
  color: var(--bronze-soft);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247, 245, 242, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f7f5f2;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.social-links a:hover {
  background: rgba(154, 123, 79, 0.25);
  border-color: var(--bronze-soft);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(247, 245, 242, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  justify-content: space-between;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

.footer-bottom p a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom p a:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  }
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 1100;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  transition: transform 0.25s var(--ease);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  color: #fff;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

/* ==========================================================================
   Ongoing projects carousel (classic premium 3D cards)
   ========================================================================== */
.ongoing-section {
  padding-top: 3rem;
  padding-bottom: 1.75rem;
  overflow: hidden;
}

.ongoing-section .section-head {
  margin-bottom: 1rem;
}

.ongoing-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.35rem 3.5rem 1.5rem;
  perspective: 1600px;
}

.ongoing-tabs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  margin: 0 auto 0.85rem;
  max-width: 960px;
  padding: 0 0.5rem;
  position: relative;
  z-index: 4;
}

.ongoing-tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  cursor: pointer;
  color: rgba(11, 31, 58, 0.45);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
  max-width: 160px;
  text-align: left;
  transition: color 0.25s var(--ease);
}

.ongoing-tab__name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ongoing-tab.is-active {
  color: var(--navy);
}

/* Top rectangle progress line on card (left -> right) */
.ongoing-card__topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 6;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: rgba(11, 31, 58, 0.12);
  overflow: hidden;
  pointer-events: none;
}

.ongoing-card__topline i {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--navy) 0%, var(--gold) 100%);
  transform: scaleX(0);
  transform-origin: left center;
}

.ongoing-carousel .ongoing-slide.is-active .ongoing-card__topline i {
  animation: ongoingProgressLTR 4s linear forwards;
  animation-play-state: running;
}

.ongoing-carousel.is-paused .ongoing-slide.is-active .ongoing-card__topline i {
  animation-play-state: paused;
}

/* Pause/play always visible on every card */
.ongoing-pause-fab {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 7;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(11, 31, 58, 0.86);
  color: #fff;
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 8px 20px rgba(6, 21, 37, 0.28);
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.ongoing-pause-fab:hover {
  background: var(--navy);
  transform: scale(1.04);
}

.ongoing-pause-fab svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.ongoing-pause-fab .icon-play {
  display: none;
}

.ongoing-carousel.is-paused .ongoing-pause-fab .icon-pause {
  display: none;
}

.ongoing-carousel.is-paused .ongoing-pause-fab .icon-play {
  display: block;
}

@keyframes ongoingProgressLTR {
  from { transform: scaleX(0); transform-origin: left center; }
  to { transform: scaleX(1); transform-origin: left center; }
}

.ongoing-viewport {
  position: relative;
  overflow: visible;
  padding: 0.75rem 0 1.25rem;
  transform-style: preserve-3d;
}

.ongoing-track {
  display: flex;
  align-items: center;
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  transform-style: preserve-3d;
}

.ongoing-slide {
  flex: 0 0 86%;
  width: 86%;
  padding: 0.6rem 0.75rem;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  transform-style: preserve-3d;
}

.ongoing-card {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  width: 100%;
  max-width: 960px;
  height: 390px;
  border-radius: 22px;
  overflow: hidden;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(196, 163, 90, 0.85), rgba(11, 31, 58, 0.4), rgba(196, 163, 90, 0.65)) border-box;
  border: 1px solid transparent;
  transform-style: preserve-3d;
  transform: scale(0.9) rotateY(16deg) translateZ(-40px);
  opacity: 0.55;
  filter: saturate(0.9);
  box-shadow:
    0 10px 24px rgba(11, 31, 58, 0.12),
    0 28px 50px rgba(11, 31, 58, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 800ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 800ms ease,
    filter 800ms ease;
}

.ongoing-slide.is-prev .ongoing-card {
  transform: scale(0.88) rotateY(22deg) translateZ(-55px);
}

.ongoing-slide.is-next .ongoing-card {
  transform: scale(0.88) rotateY(-22deg) translateZ(-55px);
}

.ongoing-slide.is-active .ongoing-card {
  transform: scale(1) rotateY(0deg) translateZ(28px);
  opacity: 1;
  filter: none;
  box-shadow:
    0 8px 18px rgba(11, 31, 58, 0.1),
    0 30px 60px rgba(11, 31, 58, 0.24),
    0 0 0 1px rgba(196, 163, 90, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.ongoing-slide.is-active .ongoing-card:hover {
  transform: scale(1.015) rotateY(-2deg) rotateX(2deg) translateZ(36px);
  box-shadow:
    0 14px 28px rgba(11, 31, 58, 0.14),
    0 36px 70px rgba(11, 31, 58, 0.28),
    0 0 0 1px rgba(196, 163, 90, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.ongoing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 4;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.28) 0%, transparent 32%, transparent 68%, rgba(11, 31, 58, 0.08) 100%);
}

.ongoing-card__link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.ongoing-card__info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.35rem 1.25rem 1.15rem;
  background:
    radial-gradient(circle at top left, rgba(196, 163, 90, 0.18), transparent 45%),
    linear-gradient(165deg, #fbf8f2 0%, #f3f6fb 48%, #eef2f8 100%);
  pointer-events: none;
}

.ongoing-card__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.ongoing-card__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 8px 16px rgba(11, 31, 58, 0.22);
}

.ongoing-card__brand strong {
  display: block;
  color: var(--navy);
  font-size: 0.84rem;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

.ongoing-card__brand span {
  display: block;
  margin-top: 0.12rem;
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ongoing-card__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  line-height: 1.15;
}

.ongoing-card__location {
  margin: 0.25rem 0 0;
  color: var(--ink-muted);
  font-size: 0.82rem;
}

.ongoing-card__price {
  margin: 0.75rem 0 0.15rem;
  color: var(--navy);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ongoing-card__config {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.8rem;
}

.ongoing-card__offer {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.7rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(196, 163, 90, 0.22), rgba(196, 163, 90, 0.1));
  color: #7d5f22;
  font-size: 0.72rem;
  font-weight: 700;
  width: fit-content;
  border: 1px solid rgba(196, 163, 90, 0.28);
}

.ongoing-card__offer svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
}

.ongoing-card__actions {
  margin-top: auto;
  padding-top: 0.85rem;
  pointer-events: auto;
}

.btn-ongoing-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  border-radius: 10px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--navy-deep), var(--navy));
  color: #fff;
  border: 1px solid rgba(196, 163, 90, 0.25);
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.18);
  transition: background 0.3s var(--ease), color 0.3s var(--ease), transform 0.25s var(--ease);
}

.btn-ongoing-contact:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--navy);
  transform: translateY(-1px);
}

.ongoing-card__banner {
  position: relative;
  height: 100%;
  min-height: 0;
  background: #0b1f3a;
  overflow: hidden;
  transform: translateZ(1px);
}

.ongoing-card__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 31, 58, 0.2) 0%, transparent 38%);
  pointer-events: none;
}

.ongoing-card__banner img,
.ongoing-card__banner .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.ongoing-card:hover .ongoing-card__banner img {
  transform: scale(1.04);
}

.ongoing-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-58%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 58, 0.12);
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.14);
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}

.ongoing-nav:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-58%) scale(1.04);
}

.ongoing-nav svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ongoing-nav--prev { left: 0.2rem; }
.ongoing-nav--next { right: 0.2rem; }

@media (max-width: 900px) {
  .ongoing-carousel {
    max-width: 640px;
    padding: 0.5rem 2.6rem 1rem;
    perspective: none;
  }

  .ongoing-tabs {
    gap: 0.85rem;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.25rem;
  }

  .ongoing-tab {
    flex: 0 0 auto;
    max-width: 140px;
    font-size: 0.84rem;
  }

  .ongoing-pause-fab {
    right: 0.75rem;
    top: 0.75rem;
  }

  .ongoing-slide {
    flex: 0 0 100%;
    width: 100%;
  }

  .ongoing-card,
  .ongoing-slide.is-prev .ongoing-card,
  .ongoing-slide.is-next .ongoing-card,
  .ongoing-slide.is-active .ongoing-card,
  .ongoing-slide.is-active .ongoing-card:hover {
    transform: none;
    opacity: 1;
    filter: none;
  }

  .ongoing-card {
    grid-template-columns: 1fr;
    height: auto;
    max-width: 460px;
  }

  .ongoing-card__info {
    min-height: 270px;
    pointer-events: none;
  }

  .ongoing-card__banner {
    height: 230px;
  }
}

@media (max-width: 575px) {
  .ongoing-carousel {
    padding-inline: 2.2rem;
  }

  .ongoing-nav {
    width: 36px;
    height: 36px;
  }

  .ongoing-card__info {
    padding: 1rem;
  }

  .ongoing-card__title {
    font-size: 1.2rem;
  }
}

/* ---------- Future projects carousel ---------- */
.future-section {
  overflow: hidden;
}

.future-section--alt {
  background: #f7f4ee;
}

.future-section[id] {
  scroll-margin-top: 5.5rem;
}

.sm-jump .filter-chips {
  justify-content: center;
}

.sm-jump[id] {
  scroll-margin-top: 5.5rem;
}

/* Sales & Marketing — premium banner */
.sm-banner {
  position: relative;
  color: #fff;
  min-height: min(78vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #061525;
}

.sm-banner__media {
  position: absolute;
  inset: 0;
}

.sm-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
}

.sm-banner__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 37, 0.22) 0%, rgba(6, 21, 37, 0.82) 100%),
    linear-gradient(90deg, rgba(6, 21, 37, 0.72) 0%, rgba(6, 21, 37, 0.18) 58%, transparent 100%);
}

.sm-banner__frame {
  position: absolute;
  inset: 1.35rem 1.35rem auto auto;
  width: min(28vw, 280px);
  height: min(42vh, 320px);
  border: 1px solid rgba(196, 163, 90, 0.45);
  pointer-events: none;
}

.sm-banner__content {
  position: relative;
  z-index: 2;
  padding: 5.5rem 0 2.75rem;
  max-width: 760px;
}

.sm-banner__crumbs .breadcrumb {
  margin-bottom: 1.15rem;
}

.sm-banner__crumbs .breadcrumb,
.sm-banner__crumbs .breadcrumb a,
.sm-banner__crumbs .breadcrumb span {
  color: rgba(255, 255, 255, 0.72);
}

.sm-banner__crumbs .breadcrumb a:hover {
  color: var(--gold-soft);
}

.sm-banner__crumbs .breadcrumb li:not(:last-child)::after {
  color: rgba(255, 255, 255, 0.38);
}

.sm-banner__eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.sm-banner__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  letter-spacing: -0.02em;
}

.sm-banner__lead {
  margin: 0 0 1.45rem;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.08rem;
  line-height: 1.65;
}

.sm-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.sm-banner__ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.sm-banner__ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.sm-banner__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.sm-banner__pill {
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(196, 163, 90, 0.45);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.sm-banner__pill:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

@media (max-width: 720px) {
  .sm-banner {
    min-height: min(70vh, 560px);
  }

  .sm-banner__frame {
    display: none;
  }

  .sm-banner__content {
    padding-top: 4.5rem;
  }
}

.future-section .section-head {
  margin-bottom: 1.25rem;
}

.future-carousel {
  --future-gap: 1.15rem;
  --future-per-view: 4;
  position: relative;
  max-width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
  padding-inline: 2.75rem;
}

.future-viewport {
  overflow: hidden;
  width: 100%;
}

.future-track {
  display: flex;
  align-items: stretch;
  gap: var(--future-gap);
  will-change: transform;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.future-slide {
  display: flex;
  flex: 0 0 calc((100% - (var(--future-gap) * (var(--future-per-view) - 1))) / var(--future-per-view));
  min-width: 0;
  transition: filter 420ms ease, opacity 420ms ease;
}

.future-slide.is-blurred {
  opacity: 0.55;
  filter: blur(1.4px) saturate(0.85);
}

.future-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 430px;
  background: #fff;
}

.future-card__media {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(11, 31, 58, 0.08), rgba(196, 163, 90, 0.12)),
    #e8edf4;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.1);
}

.future-card__media img,
.future-card__media .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.future-card:hover .future-card__media img {
  transform: scale(1.04);
}

.future-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 0.15rem 0.25rem;
  min-height: 188px;
}

.future-card__title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.future-card__title a {
  color: inherit;
  text-decoration: none;
}

.future-card__title a:hover {
  color: var(--navy-soft);
}

.future-card__config,
.future-card__location {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.35;
  color: rgba(11, 31, 58, 0.58);
}

.future-card__location {
  margin-top: 0.1rem;
}

.future-card__price {
  margin: 0.7rem 0 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.future-card__actions {
  margin-top: auto;
  padding-top: 0.85rem;
}

.btn-future-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 118px;
  padding: 0.55rem 1.35rem;
  border-radius: 999px;
  border: 1.5px solid var(--navy);
  background: transparent;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn-future-contact:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: 0 8px 18px rgba(11, 31, 58, 0.18);
}

.future-nav {
  position: absolute;
  top: 28%;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(11, 31, 58, 0.08);
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.16);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), opacity 0.25s var(--ease);
}

.future-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.future-nav:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 14px 32px rgba(11, 31, 58, 0.2);
}

.future-nav:disabled {
  opacity: 0.35;
  cursor: default;
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.08);
}

.future-nav--prev {
  left: 0;
}

.future-nav--next {
  right: 0;
}

@media (max-width: 1100px) {
  .future-carousel {
    --future-per-view: 3;
  }
}

@media (max-width: 800px) {
  .future-carousel {
    --future-per-view: 2;
    padding-inline: 2.4rem;
  }

  .future-card {
    min-height: 400px;
  }

  .future-nav {
    width: 40px;
    height: 40px;
    top: 24%;
  }
}

@media (max-width: 560px) {
  .future-carousel {
    --future-per-view: 1;
    --future-gap: 0.85rem;
    max-width: calc(100% - 1rem);
    padding-inline: 2.1rem;
  }

  .future-slide.is-blurred {
    opacity: 1;
    filter: none;
  }

  .future-card {
    min-height: 0;
  }

  .future-card__title {
    font-size: 1.3rem;
  }
}

/* ---------- Project detail (all projects) ---------- */
.pd-banner {
  position: relative;
  color: #fff;
  min-height: min(62vh, 560px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pd-banner__media {
  position: absolute;
  inset: 0;
}

.pd-banner__media img,
.pd-banner__media .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-banner__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 21, 37, 0.18) 0%, rgba(6, 21, 37, 0.72) 100%),
    linear-gradient(90deg, rgba(6, 21, 37, 0.55) 0%, transparent 55%);
}

.pd-banner__content {
  position: relative;
  z-index: 2;
  padding: 3rem 0 2.4rem;
}

.pd-banner__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
}

.pd-pill {
  display: inline-flex;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pd-pill--soft {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.pd-banner__title {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 600;
  line-height: 1.08;
  color: #fff;
}

.pd-banner__loc {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
}

.pd-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.pd-banner__price {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-soft);
}

.pd-about__grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

.pd-about__lead {
  font-size: 1.08rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

.pd-about__config {
  display: inline-flex;
  margin: 0 0 0.85rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: var(--gold-pale);
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 600;
}

.pd-about__body {
  color: var(--ink-muted);
  line-height: 1.7;
}

.pd-about__visual {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.14);
  aspect-ratio: 4 / 3;
}

.pd-about__visual img,
.pd-about__visual .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (min-width: 900px) {
  .pd-about__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.25rem;
  }
}

.pd-highlights {
  background: #f7f4ee;
}

.pd-highlights__grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.9rem;
}

.pd-highlight-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 4 / 5;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.08);
}

.pd-highlight-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.pd-highlight-card:hover img {
  transform: scale(1.05);
}

.pd-amenities {
  background: linear-gradient(180deg, #0b1f3a 0%, #122845 100%);
  color: #fff;
}

.pd-amenities .section-eyebrow {
  color: var(--gold-soft);
}

.pd-amenities .section-head h2,
.pd-amenities .section-lead {
  color: #fff;
}

.pd-amenities .section-lead {
  opacity: 0.78;
}

.pd-amenities__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.85rem;
}

.pd-amenity-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 132px;
  padding: 1rem 0.75rem;
  text-align: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: border-color 250ms ease, transform 250ms ease, background 250ms ease;
}

.pd-amenity-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 163, 90, 0.45);
  background: rgba(255, 255, 255, 0.07);
}

.pd-amenity-card__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.pd-amenity-card__icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pd-amenity-card h3 {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
}

.pd-plans__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.pd-plan-card {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.08);
}

.pd-plan-card__media {
  aspect-ratio: 4 / 3;
  background: #eef2f7;
}

.pd-plan-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-plan-card h3 {
  margin: 0;
  padding: 0.9rem 1rem 1rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--navy);
}

.pd-location {
  background: #f7f4ee;
}

.pd-location__nearby {
  margin-top: 1.5rem;
}

.pd-location__nearby h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
}

.pd-location__chips {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.6rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 0.35rem;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 163, 90, 0.7) rgba(11, 31, 58, 0.08);
}

.pd-location__chips::-webkit-scrollbar {
  height: 6px;
}

.pd-location__chips::-webkit-scrollbar-track {
  background: rgba(11, 31, 58, 0.06);
  border-radius: 999px;
}

.pd-location__chips::-webkit-scrollbar-thumb {
  background: rgba(196, 163, 90, 0.75);
  border-radius: 999px;
}

.pd-location__chip {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.08);
  color: rgba(11, 31, 58, 0.72);
  font-size: 0.88rem;
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.06);
}

.pd-location__chip strong {
  color: #fff;
  background: #6f8a58;
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
}

/* Presence / Leaflet map (Suchirindia-style) */
.presence-section {
  background: linear-gradient(180deg, #fff 0%, #f7f4ee 100%);
}

.presence-map__head {
  margin-bottom: 1.5rem;
}

.presence-map__accent {
  color: var(--gold);
}

.presence-map__layout {
  display: grid;
  gap: 1.5rem;
}

.presence-map__intro {
  margin: 0 0 0.85rem;
  color: rgba(11, 31, 58, 0.6);
  font-size: 0.92rem;
  line-height: 1.55;
}

.presence-map__accordions {
  display: grid;
  gap: 0.75rem;
}

/* Home: show ~5 project address rows, scroll the rest */
.presence-map--scroll-5 .presence-map__list {
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.presence-map--scroll-5 .presence-acc.is-open .presence-acc__body {
  max-height: 27.5rem; /* ~5 project address cards; desktop equal-height overrides this */
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 163, 90, 0.7) rgba(11, 31, 58, 0.08);
}

.presence-map--scroll-5 .presence-acc.is-open .presence-acc__body::-webkit-scrollbar {
  width: 6px;
}

.presence-map--scroll-5 .presence-acc.is-open .presence-acc__body::-webkit-scrollbar-track {
  background: rgba(11, 31, 58, 0.06);
  border-radius: 999px;
}

.presence-map--scroll-5 .presence-acc.is-open .presence-acc__body::-webkit-scrollbar-thumb {
  background: rgba(196, 163, 90, 0.75);
  border-radius: 999px;
}

.presence-map--scroll-5 .presence-map__accordions {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}

.presence-acc {
  background: #fff;
  border: 1px solid rgba(11, 31, 58, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.presence-acc__toggle {
  width: 100%;
  appearance: none;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.1rem;
  cursor: pointer;
  text-align: left;
}

.presence-acc__toggle:hover {
  background: rgba(247, 244, 238, 0.6);
}

.presence-acc__title {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.presence-acc__icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  display: inline-flex;
}

.presence-acc__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.presence-acc__chev {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid rgba(11, 31, 58, 0.35);
  border-bottom: 1.5px solid rgba(11, 31, 58, 0.35);
  transform: rotate(45deg);
  transition: transform 250ms ease;
}

.presence-acc.is-open .presence-acc__chev {
  transform: rotate(225deg);
}

.presence-acc__body {
  border-top: 1px solid rgba(11, 31, 58, 0.06);
  padding: 0.4rem;
  background: rgba(247, 244, 238, 0.35);
  display: grid;
  gap: 0.25rem;
}

.presence-item {
  appearance: none;
  border: 0;
  border-left: 2px solid transparent;
  background: transparent;
  width: 100%;
  text-align: left;
  padding: 0.85rem 0.9rem 0.85rem 1rem;
  cursor: pointer;
  display: grid;
  gap: 0.3rem;
  color: rgba(11, 31, 58, 0.72);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.presence-item:hover {
  background: rgba(11, 31, 58, 0.04);
  color: var(--navy);
}

.presence-item.is-active {
  background: rgba(196, 163, 90, 0.12);
  border-left-color: var(--gold);
  color: var(--navy);
}

.presence-item strong {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 600;
}

.presence-item__addr {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(11, 31, 58, 0.58);
}

.presence-item__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
}

.presence-item__dir {
  justify-self: start;
  margin-top: 0.2rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.presence-item__dir:hover {
  text-decoration: underline;
}

.presence-map__canvas-wrap {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  overflow: hidden;
  background: #0b1f3a;
  box-shadow: 0 18px 40px rgba(11, 31, 58, 0.16);
}

.presence-map__canvas {
  width: 100%;
  height: 100%;
  min-height: 420px;
}

.pk-divicon {
  background: transparent;
  border: 0;
}

.pk-marker {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pk-marker__pulse {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(196, 163, 90, 0.45);
  animation: pkPulse 1.4s ease-out infinite;
  bottom: 2px;
}

.pk-marker__ring {
  display: none;
}

.pk-marker.is-blinking {
  animation: pkMarkerBlink 0.35s ease-in-out 4;
}

.pk-marker.is-blinking .pk-marker__ring {
  display: block;
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid rgba(196, 163, 90, 0.95);
  bottom: -4px;
  animation: pkRingBlink 0.35s ease-in-out 4;
  pointer-events: none;
}

.pk-marker.is-blinking svg {
  filter: drop-shadow(0 0 8px rgba(196, 163, 90, 0.95));
}

@keyframes pkPulse {
  0% { transform: scale(0.6); opacity: 0.85; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes pkMarkerBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(1.18); }
}

@keyframes pkRingBlink {
  0% { transform: scale(0.7); opacity: 1; }
  100% { transform: scale(1.55); opacity: 0; }
}

.pk-popup {
  min-width: 160px;
}

.pk-popup strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 0.95rem;
}

.pk-popup p {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  line-height: 1.4;
}

.pk-popup span {
  display: block;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pk-popup a {
  display: inline-block;
  margin-top: 0.45rem;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
}

.leaflet-container .leaflet-popup-content-wrapper {
  background: #0b1f3a;
  color: #fff;
  border-radius: 10px;
  border: 1px solid rgba(196, 163, 90, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.leaflet-container .leaflet-popup-tip {
  background: #0b1f3a;
}

.leaflet-container .leaflet-popup-close-button {
  color: var(--gold) !important;
}

.project-listing-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.project-listing-card .project-card,
.project-listing-card .card {
  height: 100%;
}

.project-listing-card__geo {
  margin-top: -0.15rem;
  padding: 0.85rem 1rem 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 var(--radius) var(--radius);
}

.project-listing-card__loc {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin: 0 0 0.55rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 600;
}

.project-listing-card__loc svg {
  width: 14px;
  height: 14px;
  margin-top: 0.15rem;
  flex-shrink: 0;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.8;
}

.project-listing-card__nearby {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(11, 31, 58, 0.6);
}

.project-listing-card__nearby span {
  font-weight: 700;
  color: var(--navy);
}

.project-listing-card__nearby em {
  font-style: normal;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: rgba(196, 163, 90, 0.12);
  color: rgba(11, 31, 58, 0.75);
}

@media (min-width: 960px) {
  .presence-map__layout {
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.55fr);
    grid-template-rows: 520px;
    align-items: stretch;
    gap: 1.75rem;
  }

  .presence-map__list {
    display: flex;
    flex-direction: column;
    min-height: 0;
    height: 100%;
  }

  .presence-map__accordions,
  .presence-map--scroll-5 .presence-map__accordions {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    max-height: none;
    overflow: hidden;
  }

  .presence-acc.is-open {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .presence-map--scroll-5 .presence-acc.is-open .presence-acc__body {
    flex: 1 1 auto;
    min-height: 0;
    max-height: none;
  }

  .presence-map__canvas-wrap,
  .presence-map__canvas {
    min-height: 0;
    height: 100%;
  }
}

.pd-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.pd-gallery__item {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 10px 24px rgba(11, 31, 58, 0.1);
}

.pd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms ease;
}

.pd-gallery__item:hover img {
  transform: scale(1.04);
}

.pd-enquire {
  background: linear-gradient(180deg, #fff 0%, #f7f4ee 100%);
}

.pd-enquire__wrap {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.pd-enquire__brochure {
  margin-top: 0.9rem;
}

@media (min-width: 900px) {
  .pd-enquire__wrap {
    grid-template-columns: 1fr 0.9fr;
    gap: 2rem;
  }
}

@media (max-width: 1100px) {
  .pd-amenities__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pd-highlights__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .pd-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pd-amenities__grid,
  .pd-plans__grid,
  .pd-gallery__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .pd-amenities__grid,
  .pd-plans__grid,
  .pd-gallery__grid,
  .pd-highlights__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Architecture & Interior luxury page ---------- */
.ai-hero {
  position: relative;
  color: #fff;
  overflow: hidden;
}

.ai-hero__stage {
  position: relative;
  min-height: min(68vh, 620px);
  perspective: 1400px;
}

.ai-hero__media {
  position: absolute;
  inset: 0;
  transform-origin: center center;
  transform: scale(1.04) rotateX(2deg);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.ai-hero:hover .ai-hero__media {
  transform: scale(1.08) rotateX(0deg);
}

.ai-hero__media img,
.ai-hero__media .img-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ai-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(6, 21, 37, 0.82) 8%, rgba(6, 21, 37, 0.42) 48%, rgba(6, 21, 37, 0.55) 100%),
    linear-gradient(180deg, rgba(6, 21, 37, 0.2) 0%, rgba(6, 21, 37, 0.72) 100%);
}

.ai-hero__content {
  position: relative;
  z-index: 2;
  padding-top: 3.25rem;
  padding-bottom: 2.75rem;
  max-width: 780px;
}

.ai-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.ai-hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
}

.ai-hero__lead {
  margin: 0 0 1.5rem;
  font-size: 1.08rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.84);
  max-width: 36rem;
}

.ai-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.ai-hero__actions .btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.ai-hero__actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

.ai-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ai-chip {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 140px;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(196, 163, 90, 0.35);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  transform: translateZ(24px);
}

.ai-chip strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}

.ai-chip small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
}

.ai-intro {
  background:
    radial-gradient(circle at top left, rgba(196, 163, 90, 0.12), transparent 40%),
    #f8f6f1;
}

.ai-intro__grid {
  display: grid;
  gap: 1rem;
}

.ai-intro__copy {
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.ai-intro__copy p {
  margin-top: 0;
}

@media (min-width: 900px) {
  .ai-intro__grid {
    grid-template-columns: 1fr 1.1fr;
    align-items: end;
    gap: 1.75rem;
  }
}

.ai-concepts {
  overflow: hidden;
  background: linear-gradient(180deg, #fff 0%, #f4f1ea 100%);
}

.ai-concept-stack {
  display: grid;
  gap: 1.5rem;
}

.ai-concept {
  display: grid;
  gap: 1rem;
  align-items: center;
}

.ai-concept__visual {
  perspective: 1200px;
}

.ai-concept__frame {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(3deg) translateZ(0);
  box-shadow:
    0 18px 40px rgba(11, 31, 58, 0.18),
    0 0 0 1px rgba(196, 163, 90, 0.22);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 700ms ease;
}

.ai-concept:hover .ai-concept__frame {
  transform: rotateY(-2deg) rotateX(1deg) translateY(-6px);
  box-shadow:
    0 28px 60px rgba(11, 31, 58, 0.24),
    0 0 0 1px rgba(196, 163, 90, 0.35);
}

.ai-concept--flip .ai-concept__frame {
  transform: rotateY(8deg) rotateX(3deg);
}

.ai-concept--flip:hover .ai-concept__frame {
  transform: rotateY(2deg) rotateX(1deg) translateY(-6px);
}

.ai-concept__frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.ai-concept__index {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  letter-spacing: 0.04em;
}

.ai-concept__body h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.2rem);
  color: var(--navy);
  font-weight: 600;
}

.ai-concept__body p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 34rem;
}

@media (min-width: 900px) {
  .ai-concept {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 1.75rem;
  }

  .ai-concept--flip .ai-concept__visual {
    order: 2;
  }

  .ai-concept--flip .ai-concept__body {
    order: 1;
    text-align: right;
  }

  .ai-concept--flip .ai-concept__body p {
    margin-left: auto;
  }
}

.ai-gallery-section {
  background:
    radial-gradient(circle at bottom right, rgba(196, 163, 90, 0.14), transparent 40%),
    linear-gradient(180deg, #0b1f3a 0%, #122845 55%, #0b1f3a 100%);
  color: #fff;
}

.ai-gallery-section .section-eyebrow {
  color: var(--gold-soft);
}

.ai-gallery-section .section-head h2,
.ai-gallery-section .section-lead {
  color: #fff;
}

.ai-gallery-section .section-lead {
  opacity: 0.78;
}

.ai-gallery {
  display: grid;
  gap: 1rem;
}

.ai-gallery__stage {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(196, 163, 90, 0.25);
  transform: perspective(1400px) rotateX(2deg);
}

.ai-gallery__stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 280ms ease, transform 700ms ease;
}

.ai-gallery__caption {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(6, 21, 37, 0.72);
  border: 1px solid rgba(196, 163, 90, 0.4);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.ai-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.ai-gallery__thumb {
  appearance: none;
  border: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  aspect-ratio: 4 / 3;
  opacity: 0.62;
  outline: 1px solid transparent;
  transition: opacity 250ms ease, transform 250ms ease, outline-color 250ms ease;
}

.ai-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ai-gallery__thumb:hover,
.ai-gallery__thumb.is-active {
  opacity: 1;
  transform: translateY(-3px);
  outline-color: rgba(196, 163, 90, 0.7);
}

.ai-cta-section {
  background: #f7f4ee;
}

.ai-cta {
  display: grid;
  gap: 1.25rem;
  align-items: start;
}

.ai-cta h2 {
  margin-top: 0.35rem;
}

@media (min-width: 900px) {
  .ai-cta {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.75rem;
  }
}

@media (max-width: 799px) {
  .ai-hero__content {
    padding-top: 3.25rem;
  }

  .ai-concept__frame,
  .ai-concept--flip .ai-concept__frame,
  .ai-concept:hover .ai-concept__frame,
  .ai-concept--flip:hover .ai-concept__frame {
    transform: none;
  }

  .ai-gallery__thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ai-gallery__stage {
    transform: none;
    aspect-ratio: 5 / 4;
  }
}

/* Empty / 404 */
.empty-state,
.error-page {
  text-align: center;
  padding: 4rem 1rem;
}

.error-page h1 {
  font-size: clamp(3.5rem, 10vw, 6rem);
  color: var(--forest);
  margin-bottom: 0.25rem;
}

.error-code {
  color: var(--bronze);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
}

/* Utility */
.text-muted { color: var(--ink-muted); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.gap-1 { gap: 0.75rem; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

@media (max-width: 379px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .btn {
    width: 100%;
  }

  .hero-actions .btn,
  .cta-banner-actions .btn {
    width: auto;
  }
}

@media (min-width: 1400px) {
  :root {
    --container: 1240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .search-box {
    animation: none;
  }
}
/*ramji*/
.brand,
.brand img {
    background: transparent !important;
}