/* ==========================================================================
   SMARTWORLD ORCHARD — project page
   --------------------------------------------------------------------------
   Every rule is scoped under .pdp (or an pdp- prefixed class for the two
   dialogs, which sit outside <main>) so nothing here can reach the rest of the
   site. Tokens, buttons, forms, the FAQ accordion, .rise and the shared header,
   footer, enquiry modal and contact dock all keep their styling from site.css.

   Breakpoints match the rest of the site: 1100 / 980 / 860 / 720 / 560.
   ========================================================================== */

.pdp {
  --pdp-rail: 1px solid var(--line);
  --pdp-rail-dk: 1px solid var(--line-dark);
  --pdp-r: 2px;
  display: block;
}

/* --- band system, mirroring .band but scoped ---------------------------- */
.pdp-band { padding-block: var(--band); }
.pdp-band--light { background: var(--bone); }
.pdp-band--white { background: var(--white); }
.pdp-band--tint  { background: var(--bone-2); }
.pdp-band--dark  { background: var(--navy); color: var(--bone); }

.pdp-band--dark .h2      { color: var(--bone); }
.pdp-band--dark .lede    { color: rgba(239, 234, 225, 0.66); }
.pdp-band--dark .eyebrow { color: var(--brass-lift); }
.pdp-band--dark .btn--outline { color: var(--bone); border-color: rgba(239, 234, 225, 0.38); }
.pdp-band--dark .btn--outline::after { background: var(--bone); }
.pdp-band--dark .btn--outline:hover { color: var(--navy); border-color: var(--bone); }

.pdp-rule { width: 62px; height: 1px; margin: 26px 0 0; background: var(--brass); }

.pdp-prose p {
  margin: 0 0 16px;
  max-width: 62ch;
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--muted);
}
.pdp-prose p:last-child { margin-bottom: 0; }
.pdp-band--dark .pdp-prose p { color: rgba(239, 234, 225, 0.68); }

.pdp-note {
  margin: 26px 0 0;
  max-width: 86ch;
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--muted);
}
.pdp-band--dark .pdp-note { color: rgba(239, 234, 225, 0.5); }

.pdp-check { display: grid; gap: 12px; margin: 26px 0 0; padding: 0; list-style: none; }
.pdp-check li { display: flex; gap: 13px; align-items: flex-start; font-size: 0.95rem; color: var(--muted); }
.pdp-check svg { flex: none; width: 18px; height: 18px; margin-top: 3px; color: var(--brass); }

/* =============================================================== 1. HERO === */
.pdp-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(560px, 88vh, 860px);
  padding-block: calc(var(--hdr-h) + 40px) clamp(56px, 7vw, 104px);
  background: var(--navy);
  overflow: hidden;
}
.pdp-hero__media { position: absolute; inset: 0; }
.pdp-hero__media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 58%;
}
.pdp-hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top, rgba(10, 26, 47, 0.92) 0%, rgba(10, 26, 47, 0.58) 38%, rgba(10, 26, 47, 0.18) 68%, rgba(10, 26, 47, 0.32) 100%),
    linear-gradient(to right, rgba(10, 26, 47, 0.62), rgba(10, 26, 47, 0) 62%);
}
.pdp-hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
  color: var(--bone);
}
.pdp-hero__meta {
  margin: 0 0 12px;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--brass-lift);
}
.pdp-hero__h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2.5rem, 6.4vw, 5.1rem);
  line-height: 1.02; letter-spacing: -0.012em;
  color: var(--bone);
}
.pdp-hero__usp {
  margin: 20px 0 0;
  max-width: 46ch;
  font-size: clamp(0.98rem, 1.5vw, 1.12rem);
  line-height: 1.65;
  color: rgba(239, 234, 225, 0.8);
}
.pdp-hero__acts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.pdp-hero__rera {
  display: flex; align-items: center; gap: 10px;
  margin: 26px 0 0;
  font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(239, 234, 225, 0.6);
}
.pdp-hero__rera svg { width: 17px; height: 17px; flex: none; color: var(--brass); }

.pdp-hero .crumbs { margin-bottom: 22px; }

.pdp-hero__scroll {
  position: absolute; right: var(--gutter); bottom: clamp(56px, 7vw, 104px);
  display: flex; align-items: center; gap: 14px;
  font-size: 0.62rem; letter-spacing: 0.34em; text-transform: uppercase;
  color: rgba(239, 234, 225, 0.62); text-decoration: none;
}
.pdp-hero__scroll i { display: block; width: 46px; height: 1px; background: var(--brass); }
.pdp-hero__scroll:hover { color: var(--bone); }

@media (max-width: 860px) {
  .pdp-hero { min-height: 78vh; }
  .pdp-hero__scroll { display: none; }
  .pdp-hero__acts .btn { flex: 1 1 220px; }
}

/* ============================================================ 2. SUB-NAV === */
.pdp-subnav {
  position: sticky; top: var(--hdr-h); z-index: 40;
  background: rgba(10, 26, 47, 0.94);
  backdrop-filter: blur(9px);
  border-bottom: var(--pdp-rail-dk);
}
.pdp-subnav__in {
  display: flex; gap: clamp(18px, 3vw, 40px);
  max-width: var(--shell); margin-inline: auto;
  padding: 0 var(--gutter);
  overflow-x: auto;
  scrollbar-width: none;
}
.pdp-subnav__in::-webkit-scrollbar { display: none; }
.pdp-subnav a {
  flex: none;
  padding: 18px 0;
  font-size: 0.66rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(239, 234, 225, 0.62); text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color 340ms var(--ease), border-color 340ms var(--ease);
}
.pdp-subnav a:hover { color: var(--bone); border-bottom-color: var(--brass); }

@media (max-width: 860px) { .pdp-subnav { top: 64px; } }

/* ============================================================== 3. FACTS === */
.pdp-facts { background: var(--navy-2); color: var(--bone); }
.pdp-facts__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin: 0;
  background: var(--line-dark);
}
.pdp-facts__grid > div { padding: 30px 26px; background: var(--navy-2); }
.pdp-facts dt {
  margin: 0 0 8px;
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass-lift);
}
.pdp-facts dd {
  margin: 0;
  font-family: var(--display); font-size: 1.06rem; line-height: 1.35;
  color: var(--bone);
  overflow-wrap: anywhere;
}
@media (max-width: 860px) { .pdp-facts__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .pdp-facts__grid { grid-template-columns: 1fr; } }

/* ======================================================== 4. INTRO / SPLIT === */
.pdp-intro, .pdp-split {
  display: grid; grid-template-columns: 1fr 0.86fr;
  gap: clamp(34px, 5vw, 78px); align-items: center;
}
.pdp-split--flip > figure { order: -1; }
.pdp-intro__fig, .pdp-split__fig { margin: 0; overflow: hidden; border-radius: var(--pdp-r); }
.pdp-intro__fig img, .pdp-split__fig img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 980px) {
  .pdp-intro, .pdp-split { grid-template-columns: 1fr; }
  .pdp-split--flip > figure { order: 0; }
}

/* ================================================ 5. SIGNATURE AMENITIES === */
.pdp-sig { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.pdp-sig__card {
  display: flex; flex-direction: column;
  background: var(--navy-2);
  border: var(--pdp-rail-dk);
  border-radius: var(--pdp-r);
  overflow: hidden;
}
.pdp-sig__fig { margin: 0; aspect-ratio: 16 / 7; overflow: hidden; }
.pdp-sig__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.pdp-sig__card:hover .pdp-sig__fig img { transform: scale(1.04); }
.pdp-sig__body { padding: clamp(24px, 2.6vw, 34px); }
.pdp-sig__ico { width: 26px; height: 26px; color: var(--brass); }
.pdp-sig__h {
  margin: 14px 0 10px;
  font-family: var(--display); font-weight: 400; font-size: 1.4rem; line-height: 1.2;
  color: var(--bone);
}
.pdp-sig__p { margin: 0; font-size: 0.94rem; line-height: 1.8; color: rgba(239, 234, 225, 0.62); }

@media (max-width: 720px) { .pdp-sig { grid-template-columns: 1fr; } }

/* ========================================================= 6. AMENITY LIST === */
.pdp-amen-cat {
  margin: 42px 0 20px;
  font-family: var(--utility); font-weight: 400;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass);
}
.pdp-amen-cat:first-of-type { margin-top: 0; }
.pdp-amen {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin: 0; padding: 0; list-style: none;
  background: var(--line);
  border: var(--pdp-rail);
}
.pdp-amen li {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 22px 24px; background: var(--white);
}
.pdp-amen__ico { flex: none; width: 21px; height: 21px; margin-top: 2px; color: var(--brass); }
.pdp-amen li > span { display: grid; gap: 4px; }
.pdp-amen strong { font-weight: 400; font-size: 0.98rem; color: var(--ink); }
.pdp-amen strong + span { font-size: 0.84rem; line-height: 1.6; color: var(--muted); }

@media (max-width: 980px) { .pdp-amen { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pdp-amen { grid-template-columns: 1fr; } }

/* ============================================================ 7. LOCATION === */
.pdp-loc { display: grid; grid-template-columns: 1fr 0.8fr; gap: clamp(34px, 5vw, 72px); align-items: start; }
.pdp-loc__h {
  margin: 0 0 18px;
  font-family: var(--utility); font-weight: 400;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brass);
}
.pdp-drive { margin: 0; padding: 0; list-style: none; border-top: var(--pdp-rail); }
.pdp-drive li {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 15px 0; border-bottom: var(--pdp-rail);
}
.pdp-drive__p { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px; font-size: 0.98rem; color: var(--ink); }
.pdp-drive__c { font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); }
.pdp-drive__t {
  flex: none;
  font-family: var(--display); font-size: 1.06rem; color: var(--brass);
}
.pdp-conn { margin: 0; }
.pdp-conn img { width: 100%; height: auto; }

@media (max-width: 980px) { .pdp-loc { grid-template-columns: 1fr; } .pdp-conn { max-width: 520px; margin-inline: auto; } }

/* ================================================== 8. LOCATION ADVANTAGES === */
.pdp-adv { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: var(--pdp-rail); }
.pdp-adv__item { padding: clamp(24px, 2.6vw, 34px); background: var(--white); }
.pdp-adv__ico { width: 26px; height: 26px; color: var(--brass); }
.pdp-adv__h {
  margin: 16px 0 10px;
  font-family: var(--display); font-weight: 400; font-size: 1.18rem; line-height: 1.25; color: var(--ink);
}
.pdp-adv__p { margin: 0; font-size: 0.9rem; line-height: 1.78; color: var(--muted); }

@media (max-width: 980px) { .pdp-adv { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pdp-adv { grid-template-columns: 1fr; } }

/* ================================================================= 9. MAP === */
.pdp-map { position: relative; display: block; overflow: hidden; border-radius: var(--pdp-r); border: var(--pdp-rail); background: var(--white); }
.pdp-map img { width: 100%; height: auto; }
.pdp-map__cta {
  position: absolute; right: 18px; bottom: 18px;
  padding: 11px 22px;
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--navy); background: var(--brass-lift);
  transition: background 340ms var(--ease);
}
.pdp-map:hover .pdp-map__cta { background: var(--brass); }

/* ============================================================= 10. GALLERY === */
.pdp-tabs { display: flex; gap: 10px; }
.pdp-tab { color: rgba(239, 234, 225, 0.56); border-bottom-color: transparent; }
.pdp-tab:hover { color: var(--bone); }
.pdp-tab[aria-selected="true"] { color: var(--bone); border-bottom-color: var(--brass); }

.pdp-gal { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.pdp-gal__item {
  position: relative; display: block; padding: 0; margin: 0;
  font: inherit; text-align: left; cursor: pointer;
  background: var(--navy-2); border: var(--pdp-rail-dk); border-radius: var(--pdp-r);
  overflow: hidden;
}
.pdp-gal__item img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; transition: transform 900ms var(--ease); }
.pdp-gal__item:hover img { transform: scale(1.045); }
.pdp-gal__cap {
  display: block; padding: 15px 20px 18px;
  font-size: 0.84rem; line-height: 1.6; color: rgba(239, 234, 225, 0.68);
}

@media (max-width: 720px) { .pdp-gal { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .sec-head--split:has(.pdp-tabs) { grid-template-columns: 1fr; } }

/* ========================================================== 11. RESIDENCES === */
.pdp-units { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.pdp-unit {
  display: flex; flex-direction: column;
  padding: clamp(26px, 3vw, 40px);
  background: var(--bone); border: var(--pdp-rail); border-radius: var(--pdp-r);
}
.pdp-unit__badge {
  align-self: flex-start; margin: 0 0 16px; padding: 6px 13px;
  font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--navy); background: var(--brass-lift);
}
.pdp-unit__cfg { margin: 0; font-family: var(--display); font-weight: 400; font-size: 1.7rem; color: var(--ink); }
.pdp-unit__area { margin: 8px 0 0; font-size: 0.92rem; color: var(--muted); }
.pdp-unit__feat { display: grid; gap: 11px; margin: 22px 0 0; padding: 22px 0 0; list-style: none; border-top: var(--pdp-rail); }
.pdp-unit__feat li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.92rem; color: var(--muted); }
.pdp-unit__feat svg { flex: none; width: 17px; height: 17px; margin-top: 3px; color: var(--brass); }
.pdp-unit__price { margin: 24px 0 0; font-family: var(--display); font-size: 1.22rem; color: var(--ink); }
.pdp-unit__cta { margin-top: auto; padding-top: 24px; }
.pdp-unit__cta .btn { width: 100%; }

.pdp-callout {
  display: flex; gap: 16px; align-items: flex-start;
  margin: 30px 0 0; padding: 22px 26px;
  background: var(--bone-2); border-left: 2px solid var(--brass);
  font-size: 0.9rem; line-height: 1.8; color: var(--muted);
}
.pdp-callout svg { flex: none; width: 20px; height: 20px; margin-top: 3px; color: var(--brass); }
.pdp-callout strong { color: var(--ink); font-weight: 500; }

@media (max-width: 860px) { .pdp-units { grid-template-columns: 1fr; } }

/* ============================================================= 12. PILLARS === */
.pdp-pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 34px); }
.pdp-pillar { position: relative; padding-top: 26px; border-top: 2px solid var(--brass); }
.pdp-pillar__n {
  display: block; margin-bottom: 14px;
  font-family: var(--display); font-size: 0.86rem; letter-spacing: 0.1em; color: var(--brass);
}
.pdp-pillar__ico { width: 25px; height: 25px; color: var(--ink); opacity: 0.8; }
.pdp-pillar__h {
  margin: 14px 0 10px;
  font-family: var(--display); font-weight: 400; font-size: 1.2rem; line-height: 1.25; color: var(--ink);
}
.pdp-pillar__p { margin: 0; font-size: 0.9rem; line-height: 1.78; color: var(--muted); }

@media (max-width: 980px) { .pdp-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pdp-pillars { grid-template-columns: 1fr; } }

/* =========================================================== 13. LIFESTYLE === */
.pdp-life { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.6vw, 34px); }
.pdp-life__item { padding-top: 24px; border-top: var(--pdp-rail-dk); }
.pdp-life__h {
  margin: 0 0 10px;
  font-family: var(--utility); font-weight: 400;
  font-size: 0.66rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brass-lift);
}
.pdp-life__p { margin: 0; font-size: 0.94rem; line-height: 1.8; color: rgba(239, 234, 225, 0.66); }
.pdp-life__fig { margin: clamp(38px, 5vw, 66px) 0 0; overflow: hidden; border-radius: var(--pdp-r); }
.pdp-life__fig img { width: 100%; height: auto; }

@media (max-width: 860px) { .pdp-life { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pdp-life { grid-template-columns: 1fr; } }

/* =============================================================== 14. VIDEO === */
.pdp-embed { position: relative; aspect-ratio: 16 / 9; overflow: hidden; border-radius: var(--pdp-r); background: var(--navy); }
.pdp-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.pdp-video-ask {
  display: grid; grid-template-columns: 1fr 0.9fr; align-items: center;
  gap: clamp(26px, 4vw, 56px);
  background: var(--white); border: var(--pdp-rail); border-radius: var(--pdp-r);
  overflow: hidden;
}
.pdp-video-ask__fig { margin: 0; height: 100%; }
.pdp-video-ask__fig img { width: 100%; height: 100%; min-height: 260px; object-fit: cover; }
.pdp-video-ask__body { padding: clamp(26px, 3vw, 44px) clamp(26px, 3vw, 44px) clamp(26px, 3vw, 44px) 0; }
.pdp-video-ask__h { margin: 0 0 14px; font-family: var(--display); font-weight: 400; font-size: 1.5rem; color: var(--ink); }
.pdp-video-ask__p { margin: 0 0 26px; max-width: 52ch; font-size: 0.95rem; line-height: 1.8; color: var(--muted); }

@media (max-width: 860px) {
  .pdp-video-ask { grid-template-columns: 1fr; }
  .pdp-video-ask__body { padding: 0 26px 30px; }
}

/* ============================================================== 15. TABLE === */
.pdp-table-wrap { overflow-x: auto; border: var(--pdp-rail); border-radius: var(--pdp-r); }
.pdp-table { width: 100%; border-collapse: collapse; min-width: 640px; background: var(--white); }
.pdp-table th, .pdp-table td { padding: 17px 22px; text-align: left; border-bottom: var(--pdp-rail); }
.pdp-table thead th {
  font-weight: 400; font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted); background: var(--bone);
}
.pdp-table tbody th { font-weight: 400; font-family: var(--display); font-size: 1.06rem; color: var(--ink); }
.pdp-table tbody td { font-size: 0.94rem; color: var(--muted); }
.pdp-table tbody tr:last-child th, .pdp-table tbody tr:last-child td { border-bottom: 0; }

/* ================================================ 16. INVENTORY CAROUSEL === */
.pdp-inv { overflow: hidden; }

.pdp-inv__nav { display: flex; gap: 10px; }
.pdp-inv__btn {
  display: grid; place-items: center;
  width: 52px; height: 52px; padding: 0;
  color: var(--bone); background: none;
  border: var(--pdp-rail-dk); border-radius: 50%;
  cursor: pointer;
  transition: background 340ms var(--ease), border-color 340ms var(--ease), color 340ms var(--ease);
}
.pdp-inv__btn svg { width: 20px; height: 8px; fill: none; stroke: currentColor; stroke-width: 1.2; }
.pdp-inv__btn:hover:not(:disabled) { color: var(--navy); background: var(--brass); border-color: var(--brass); }
.pdp-inv__btn:disabled { opacity: 0.3; cursor: default; }

/* --- filters --- */
.pdp-filters {
  display: flex; flex-wrap: wrap; gap: 12px 30px; align-items: center;
  margin-bottom: clamp(26px, 3vw, 40px);
  padding-bottom: 22px;
  border-bottom: var(--pdp-rail-dk);
}
.pdp-filters__set { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-filters__set + .pdp-filters__set { position: relative; padding-left: 30px; }
.pdp-filters__set + .pdp-filters__set::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 22px; background: var(--line-dark);
}
.pdp-chip {
  padding: 10px 20px;
  font-family: var(--utility); font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(239, 234, 225, 0.62); background: none;
  border: var(--pdp-rail-dk); border-radius: 999px; cursor: pointer;
  transition: color 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}
.pdp-chip:hover { color: var(--bone); border-color: rgba(239, 234, 225, 0.4); }
.pdp-chip.is-on { color: var(--navy); background: var(--brass-lift); border-color: var(--brass-lift); }

@media (max-width: 560px) {
  .pdp-filters__set + .pdp-filters__set { padding-left: 0; }
  .pdp-filters__set + .pdp-filters__set::before { display: none; }
}

.pdp-chip--link { text-decoration: none; display: inline-block; }
.pdp-band--white .pdp-chip, .pdp-band--light .pdp-chip, .pdp-band--tint .pdp-chip {
  color: var(--muted); border: var(--pdp-rail);
}
.pdp-band--white .pdp-chip:hover, .pdp-band--light .pdp-chip:hover, .pdp-band--tint .pdp-chip:hover {
  color: var(--ink); border-color: var(--brass);
}
.pdp-band--white .pdp-chip.is-on, .pdp-band--light .pdp-chip.is-on, .pdp-band--tint .pdp-chip.is-on {
  color: var(--navy); background: var(--brass-lift); border-color: var(--brass-lift);
}
.pdp-card__wa {
  display: block; margin-top: 10px; padding: 11px 12px;
  font-family: var(--utility); font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; text-align: center; text-decoration: none;
  color: rgba(239, 234, 225, 0.7); border: var(--pdp-rail-dk); border-radius: 2px;
  transition: color 300ms var(--ease), border-color 300ms var(--ease);
}
.pdp-card__wa:hover { color: var(--bone); border-color: var(--brass); }
.pdp-band--white .pdp-card__wa, .pdp-band--light .pdp-card__wa, .pdp-band--tint .pdp-card__wa {
  color: var(--muted); border: var(--pdp-rail);
}
.pdp-band--white .pdp-card__wa:hover, .pdp-band--light .pdp-card__wa:hover, .pdp-band--tint .pdp-card__wa:hover {
  color: var(--ink); border-color: var(--brass);
}

/* light-band variants of the carousel surface */
.pdp-band--white .pdp-card, .pdp-band--light .pdp-card, .pdp-band--tint .pdp-card {
  background: var(--white); border: var(--pdp-rail);
}
.pdp-band--white .pdp-card__cfg, .pdp-band--light .pdp-card__cfg, .pdp-band--tint .pdp-card__cfg { color: var(--ink); }
.pdp-band--white .pdp-card__price, .pdp-band--light .pdp-card__price, .pdp-band--tint .pdp-card__price { color: var(--ink); }
.pdp-band--white .pdp-card__specs, .pdp-band--light .pdp-card__specs, .pdp-band--tint .pdp-card__specs {
  background: var(--line); border-block: var(--pdp-rail);
}
.pdp-band--white .pdp-card__specs > div, .pdp-band--light .pdp-card__specs > div, .pdp-band--tint .pdp-card__specs > div { background: var(--white); }
.pdp-band--white .pdp-card__specs dd, .pdp-band--light .pdp-card__specs dd, .pdp-band--tint .pdp-card__specs dd { color: var(--ink); }
.pdp-band--white .pdp-inv__btn, .pdp-band--light .pdp-inv__btn, .pdp-band--tint .pdp-inv__btn {
  color: var(--ink); border: var(--pdp-rail);
}
.pdp-band--white .pdp-inv__count, .pdp-band--light .pdp-inv__count, .pdp-band--tint .pdp-inv__count { color: var(--brass); }
.pdp-band--white .pdp-inv__dot, .pdp-band--light .pdp-inv__dot, .pdp-band--tint .pdp-inv__dot { background: var(--line); }
.pdp-band--white .pdp-inv__empty, .pdp-band--light .pdp-inv__empty, .pdp-band--tint .pdp-inv__empty { color: var(--muted); }
.pdp-band--white .pdp-filters, .pdp-band--light .pdp-filters, .pdp-band--tint .pdp-filters { border-bottom: var(--pdp-rail); }
.pdp-band--white .pdp-filters__set + .pdp-filters__set::before,
.pdp-band--light .pdp-filters__set + .pdp-filters__set::before,
.pdp-band--tint .pdp-filters__set + .pdp-filters__set::before { background: var(--line); }

/* --- viewport and track --- */
.pdp-inv__viewport { position: relative; overflow: hidden; }
.pdp-inv__viewport:focus-visible { outline: 2px solid var(--brass); outline-offset: 6px; }
.pdp-inv__track {
  display: flex;
  gap: var(--pdp-gap, 24px);
  transition: transform 620ms var(--ease);
  will-change: transform;
}
.pdp-inv__track.is-dragging { transition: none; cursor: grabbing; }
.pdp-inv__empty {
  margin: 0; padding: 48px 0;
  font-size: 0.98rem; color: rgba(239, 234, 225, 0.66);
}

.pdp-card {
  flex: 0 0 calc((100% - 2 * var(--pdp-gap, 24px)) / 3);
  display: flex; flex-direction: column;
  background: var(--navy-2);
  border: var(--pdp-rail-dk); border-radius: var(--pdp-r);
  overflow: hidden;
}
.pdp-card[hidden] { display: none; }
.pdp-card__img { position: relative; display: block; }
.pdp-card__img img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; }
.pdp-card__tag {
  position: absolute; top: 14px; left: 14px;
  padding: 6px 14px;
  font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy); background: var(--brass-lift);
}
.pdp-card__tag--rent { background: var(--bone); }
.pdp-card__body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.pdp-card__cfg {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px;
  margin: 0;
  font-family: var(--display); font-weight: 400; font-size: 1.3rem; color: var(--bone);
}
.pdp-card__ref { font-family: var(--utility); font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(239, 234, 225, 0.45); }
.pdp-card__price {
  margin: 14px 0 0;
  font-family: var(--display); font-size: 1.42rem; color: var(--brass-lift);
}
.pdp-card__price small { display: block; margin-top: 5px; font-family: var(--utility); font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(239, 234, 225, 0.42); }
.pdp-card__specs { display: grid; gap: 1px; margin: 20px 0 0; background: var(--line-dark); border-block: var(--pdp-rail-dk); }
.pdp-card__specs > div { display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; background: var(--navy-2); }
.pdp-card__specs dt { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(239, 234, 225, 0.45); }
.pdp-card__specs dd { margin: 0; font-size: 0.86rem; text-align: right; color: rgba(239, 234, 225, 0.85); }
.pdp-card__acts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: auto; padding-top: 22px; }
.pdp-card__acts .btn { padding: 13px 12px; font-size: 0.6rem; letter-spacing: 0.16em; }

@media (max-width: 980px) { .pdp-card { flex-basis: calc((100% - var(--pdp-gap, 24px)) / 2); } }
@media (max-width: 720px) { .pdp-card { flex-basis: 100%; } }

/* --- pagination --- */
.pdp-inv__foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 20px;
  margin-top: clamp(26px, 3vw, 38px);
}
.pdp-inv__count {
  margin: 0;
  font-family: var(--display); font-size: 1.02rem; letter-spacing: 0.14em; color: var(--brass-lift);
}
.pdp-inv__dots { display: flex; flex-wrap: wrap; gap: 8px; }
.pdp-inv__dot {
  width: 26px; height: 3px; padding: 0;
  background: var(--line-dark); border: 0; cursor: pointer;
  transition: background 340ms var(--ease), width 340ms var(--ease);
}
.pdp-inv__dot.is-on { width: 40px; background: var(--brass); }

/* --- headline stat grid (developer credentials, township scale) --------- */
.pdp-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; margin: 0;
  background: var(--line); border: var(--pdp-rail);
}
.pdp-stats > div { padding: clamp(26px, 3vw, 40px) clamp(20px, 2.4vw, 30px); background: var(--white); }
.pdp-stats dt {
  margin: 0 0 10px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.05; color: var(--ink);
}
.pdp-stats dd {
  margin: 0;
  font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}
.pdp-band--dark .pdp-stats { background: var(--line-dark); border: var(--pdp-rail-dk); }
.pdp-band--dark .pdp-stats > div { background: var(--navy-2); }
.pdp-band--dark .pdp-stats dt { color: var(--bone); }
.pdp-band--dark .pdp-stats dd { color: var(--brass-lift); }

@media (max-width: 860px) { .pdp-stats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 400px) { .pdp-stats { grid-template-columns: 1fr; } }

/* ================================================================= 17. WHY === */
.pdp-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 48px); }
.pdp-why__item { padding-top: 24px; border-top: var(--pdp-rail); }
.pdp-why__n { display: block; margin-bottom: 12px; font-family: var(--display); font-size: 0.86rem; letter-spacing: 0.1em; color: var(--brass); }
.pdp-why__h { margin: 0 0 10px; font-family: var(--display); font-weight: 400; font-size: 1.24rem; line-height: 1.25; color: var(--ink); }
.pdp-why__p { margin: 0; font-size: 0.92rem; line-height: 1.8; color: var(--muted); }

@media (max-width: 980px) { .pdp-why { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pdp-why { grid-template-columns: 1fr; } }

/* =============================================================== 18. SPECS === */
.pdp-specs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin: 0;
  background: var(--line); border: var(--pdp-rail);
}
.pdp-specs--half { grid-template-columns: repeat(2, 1fr); }
.pdp-specs > div { padding: 24px 26px; background: var(--white); }
.pdp-specs dt {
  display: flex; align-items: center; gap: 11px; margin: 0 0 9px;
  font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: var(--muted);
}
.pdp-specs__ico { flex: none; width: 19px; height: 19px; color: var(--brass); }
.pdp-specs dd { margin: 0; font-size: 0.98rem; line-height: 1.6; color: var(--ink); overflow-wrap: anywhere; }
.pdp-specs dd a { color: var(--blue); }

@media (max-width: 980px) { .pdp-specs, .pdp-specs--half { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .pdp-specs, .pdp-specs--half { grid-template-columns: 1fr; } }

/* ============================================================ 19. BROCHURE === */
.pdp-broch {
  display: grid; grid-template-columns: 1fr 0.72fr; align-items: center;
  gap: clamp(26px, 4vw, 62px);
  background: var(--white); border: var(--pdp-rail); border-radius: var(--pdp-r);
  overflow: hidden;
}
.pdp-broch__body { padding: clamp(30px, 3.4vw, 52px) 0 clamp(30px, 3.4vw, 52px) clamp(30px, 3.4vw, 52px); }
.pdp-broch__p { margin: 18px 0 30px; max-width: 52ch; font-size: 0.98rem; line-height: 1.8; color: var(--muted); }
.pdp-broch__acts { display: flex; flex-wrap: wrap; gap: 14px; }
.pdp-broch__fig { margin: 0; height: 100%; }
.pdp-broch__fig img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }

@media (max-width: 860px) {
  .pdp-broch { grid-template-columns: 1fr; }
  .pdp-broch__body { padding: 30px 26px 0; }
  .pdp-broch__fig { order: -1; }
  .pdp-broch__fig img { min-height: 220px; }
  .pdp-broch { padding-bottom: 30px; }
}

/* ======================================================== 20. ENQUIRY FORM === */
.pdp-enq { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(34px, 5vw, 78px); align-items: start; }
.pdp-enq__p { margin: 24px 0 0; max-width: 54ch; font-size: 1rem; line-height: 1.8; color: var(--muted); }
.pdp-enq__alt { margin: 26px 0 0; font-size: 0.9rem; color: var(--muted); }
.pdp-enq__alt a { color: var(--blue); }
.pdp-enq__card {
  padding: clamp(26px, 3vw, 40px);
  background: var(--bone); border: var(--pdp-rail); border-radius: var(--pdp-r);
}
.pdp-enq__card .form__submit { width: 100%; margin-top: 8px; }

@media (max-width: 980px) { .pdp-enq { grid-template-columns: 1fr; } }

/* ================================================================ 21. FAQ === */
.pdp-faq { max-width: 940px; }

/* ============================================================== 23. FINALE === */
.pdp-finale {
  position: relative;
  padding-block: clamp(84px, 10vw, 148px);
  text-align: center;
  background: var(--navy);
  color: var(--bone);
  overflow: hidden;
}
.pdp-finale__bg { position: absolute; inset: 0; }
.pdp-finale__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.24; }
.pdp-finale::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(10, 26, 47, 0.62), rgba(10, 26, 47, 0.94));
}
.pdp-finale .shell { position: relative; z-index: 1; }
.pdp-finale .eyebrow { justify-content: center; color: var(--brass-lift); }
.pdp-finale__h {
  margin: 0;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.12; color: var(--bone);
}
.pdp-finale__p {
  margin: 20px auto 0; max-width: 62ch;
  font-size: 1.02rem; line-height: 1.8; color: rgba(239, 234, 225, 0.7);
}
.pdp-finale__acts { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 34px; }
.pdp-finale__note { margin-inline: auto; text-align: center; color: rgba(239, 234, 225, 0.5); }

/* ============================================== LEGAL / PROSE PAGES === */
.pdp-legal { max-width: 74ch; }
.pdp-legal p {
  margin: 0 0 18px;
  font-size: 1rem; line-height: 1.85; color: var(--muted);
}
.pdp-legal__h {
  margin: 42px 0 16px;
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.25; color: var(--ink);
}
.pdp-legal__h:first-child { margin-top: 0; }
.pdp-legal__list { display: grid; gap: 10px; margin: 0 0 22px; padding: 0 0 0 4px; list-style: none; }
.pdp-legal__list li {
  position: relative; padding-left: 22px;
  font-size: 0.96rem; line-height: 1.75; color: var(--muted);
}
.pdp-legal__list li::before {
  content: ""; position: absolute; left: 0; top: 0.72em;
  width: 6px; height: 1px; background: var(--brass);
}
.pdp-legal strong { color: var(--ink); font-weight: 500; }
.pdp-legal a { color: var(--blue); }
.pdp-legal code {
  padding: 2px 6px;
  font-size: 0.86em; background: var(--bone-2); border: var(--pdp-rail); border-radius: 2px;
}

/* ====================================================== PROJECT INDEX === */
.pdp-index { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.pdp-index__card {
  display: flex; flex-direction: column;
  background: var(--white); border: var(--pdp-rail); border-radius: var(--pdp-r);
  overflow: hidden; text-decoration: none;
  transition: border-color 340ms var(--ease), transform 340ms var(--ease);
}
.pdp-index__card:hover { border-color: var(--brass); transform: translateY(-3px); }
.pdp-index__fig { margin: 0; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bone-2); }
.pdp-index__fig img { width: 100%; height: 100%; object-fit: cover; transition: transform 900ms var(--ease); }
.pdp-index__card:hover .pdp-index__fig img { transform: scale(1.04); }
.pdp-index__body { display: flex; flex-direction: column; flex: 1; padding: 24px 26px 26px; }
.pdp-index__tag {
  align-self: flex-start; margin: 0 0 12px; padding: 5px 12px;
  font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy); background: var(--brass-lift);
}
.pdp-index__h { margin: 0; font-family: var(--display); font-weight: 400; font-size: 1.32rem; color: var(--ink); }
.pdp-index__meta { margin: 8px 0 0; font-size: 0.84rem; letter-spacing: 0.06em; color: var(--muted); }
.pdp-index__p { margin: 14px 0 0; font-size: 0.92rem; line-height: 1.75; color: var(--muted); }
.pdp-index__go {
  display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 20px;
  font-size: 0.62rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--brass);
}
.pdp-index__go i { display: block; width: 26px; height: 1px; background: currentColor; }

@media (max-width: 980px) { .pdp-index { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .pdp-index { grid-template-columns: 1fr; } }

/* ================================================ PROPERTY DETAIL MODAL === */
.pdp-pm {
  position: fixed; inset: 0; z-index: 120;
  display: none; place-items: center;
  padding: clamp(14px, 3vw, 40px);
}
.pdp-pm.is-open { display: grid; }
.pdp-pm__veil { position: absolute; inset: 0; background: rgba(6, 16, 29, 0.82); backdrop-filter: blur(4px); }
.pdp-pm__box {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr;
  width: min(940px, 100%); max-height: 92vh;
  background: var(--white); border-radius: var(--pdp-r);
  overflow: hidden auto;
  animation: pdp-pm-in 400ms var(--ease);
}
@keyframes pdp-pm-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .pdp-pm__box { animation: none; } }

.pdp-pm__x {
  position: absolute; top: 12px; right: 14px; z-index: 2;
  width: 40px; height: 40px; padding: 0;
  font-size: 1.7rem; line-height: 1;
  color: var(--ink); background: rgba(255, 255, 255, 0.88);
  border: 0; border-radius: 50%; cursor: pointer;
}
.pdp-pm__x:hover { background: var(--bone-2); }
.pdp-pm__fig { margin: 0; height: 100%; min-height: 260px; background: var(--bone-2); }
.pdp-pm__fig img { width: 100%; height: 100%; object-fit: cover; }
.pdp-pm__fig:empty, .pdp-pm__fig.is-empty { display: none; }
.pdp-pm__body { padding: clamp(26px, 3vw, 40px); }
.pdp-pm__tag {
  display: inline-block; margin: 0 0 16px; padding: 6px 14px;
  font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--navy); background: var(--brass-lift);
}
.pdp-pm__h { margin: 0; font-family: var(--display); font-weight: 400; font-size: 1.6rem; color: var(--ink); }
.pdp-pm__ref { margin: 6px 0 0; font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
.pdp-pm__price { margin: 16px 0 0; font-family: var(--display); font-size: 1.6rem; color: var(--ink); }
.pdp-pm__specs { display: grid; gap: 1px; margin: 22px 0 0; background: var(--line); border-block: var(--pdp-rail); }
.pdp-pm__specs > div { display: flex; justify-content: space-between; gap: 16px; padding: 11px 0; background: var(--white); }
.pdp-pm__specs dt { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.pdp-pm__specs dd { margin: 0; font-size: 0.9rem; text-align: right; color: var(--ink); }
.pdp-pm__acts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 26px; }
.pdp-pm__acts .btn { padding: 14px 12px; font-size: 0.6rem; letter-spacing: 0.16em; }
.pdp-pm__note { margin: 18px 0 0; font-size: 0.78rem; line-height: 1.7; color: var(--muted); }

@media (max-width: 720px) {
  .pdp-pm__box { grid-template-columns: 1fr; }
  .pdp-pm__fig { min-height: 190px; max-height: 220px; }
  .pdp-pm__acts { grid-template-columns: 1fr; }
}

/* ========================================================== LIGHTBOX === */
.pdp-lb {
  position: fixed; inset: 0; z-index: 120;
  display: none; place-content: center; justify-items: center;
  gap: 18px; padding: clamp(18px, 4vw, 56px);
  background: rgba(6, 16, 29, 0.94);
}
.pdp-lb.is-open { display: grid; }
.pdp-lb img { max-width: 100%; max-height: 78vh; object-fit: contain; }
.pdp-lb__cap { margin: 0; max-width: 70ch; text-align: center; font-size: 0.88rem; color: rgba(239, 234, 225, 0.72); }
.pdp-lb__x {
  position: absolute; top: 18px; right: 20px;
  width: 46px; height: 46px; padding: 0;
  font-size: 1.9rem; line-height: 1;
  color: var(--bone); background: none; border: 1px solid rgba(239, 234, 225, 0.28);
  border-radius: 50%; cursor: pointer;
}
.pdp-lb__x:hover { background: rgba(239, 234, 225, 0.1); }
