/* =========================================================
   FEATURED PROJECT TEMPLATE  (/project/?slug=…)
   Minimal system — square corners, hairline rules, no shadows.

   ONE COLUMN WIDTH: every section's content sits in .pj-wrap, so
   nothing is full-bleed except section backgrounds and the hero
   image. Change --pj-max / --pj-pad here and the whole page moves.
========================================================= */

.pj-page{
  --pj-max: 1200px;
  --pj-pad: 40px;
  background: var(--white);
  overflow-x: hidden;
}
.pj-wrap{
  width: 100%;
  max-width: var(--pj-max);
  margin: 0 auto;
  padding-left: var(--pj-pad);
  padding-right: var(--pj-pad);
}
.pj-section{ padding: 104px 0; }
.pj-section + .pj-section{ border-top: 1px solid var(--n-200); }
.pj-section[data-theme="dark"],
.pj-section[data-theme="dark"] + .pj-section{ border-top: 0; }

.pj-state{
  min-height: 60vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  padding: calc(var(--header-h) + 60px) 24px 80px;
  font-size: 15px; font-weight: 300; color: var(--n-500);
}
/* .pj-state sets display:flex, which would beat the UA rule for [hidden] */
.pj-state[hidden]{ display: none; }

/* ---------- Shared type ---------- */
.pj-eyebrow{
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--n-400); margin-bottom: 16px;
}
.pj-subhead{
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--n-400); margin-bottom: 20px;
}
.pj-h2{
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(28px, 3.4vw, 40px); line-height: 1.1; letter-spacing: -0.033em;
  color: var(--ink); margin-bottom: 34px;
}
[data-theme="dark"] .pj-h2{ color: #fff; }
[data-theme="dark"] .pj-eyebrow,
[data-theme="dark"] .pj-subhead{ color: rgba(255,255,255,0.42); }

/* ---------- Buttons ---------- */
.pj-btn{
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 30px;
  border: 1px solid var(--n-200);
  background: transparent; color: var(--ink);
  font-family: inherit;
  font-size: 11.5px; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out);
}
.pj-btn:hover{ border-color: var(--ink); }
.pj-btn.is-dark{ background: var(--ink); border-color: var(--ink); color: #fff; }
.pj-btn.is-dark:hover{ background: var(--blue); border-color: var(--blue); }
.pj-btn.is-light{ background: #fff; border-color: #fff; color: var(--ink); }
.pj-btn.is-light:hover{ background: rgba(255,255,255,0.86); }
.pj-btn.is-ghost{ border-color: rgba(255,255,255,0.3); color: #fff; }
.pj-btn.is-ghost:hover{ background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }
.pj-btn.is-quiet{ border-color: var(--n-200); }

/* =========================================================
   HERO
========================================================= */
.pj-hero{
  position: relative;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: flex-end;
  color: #fff; overflow: hidden;
}
.pj-hero-img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.pj-hero-shade{
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(10,10,11,0.62) 0%, rgba(10,10,11,0.05) 26%, rgba(10,10,11,0.30) 56%, rgba(10,10,11,0.90) 100%),
    linear-gradient(90deg, rgba(10,10,11,0.42) 0%, rgba(10,10,11,0) 58%);
}
.pj-hero-top{ position: relative; z-index: 2; padding-top: calc(var(--header-h) + 26px); }
.pj-hero-body{ position: relative; z-index: 2; margin-top: auto; padding-bottom: 46px; }
.pj-hero-kicker{
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px;
  margin-bottom: 22px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.pj-hero-kicker span + span::before{
  content: ""; display: inline-block;
  width: 14px; height: 1px; margin-right: 16px; vertical-align: middle;
  background: rgba(255,255,255,0.35);
}
.pj-hero-title{
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(50px, 10vw, 140px); line-height: 0.9; letter-spacing: -0.045em;
}
.pj-hero-tagline{
  margin-top: 22px; max-width: 620px;
  font-size: clamp(17px, 2.1vw, 23px); font-weight: 300; line-height: 1.45; letter-spacing: -0.015em;
  color: rgba(255,255,255,0.85);
}
.pj-hero-rail{
  position: relative; z-index: 2;
  border-top: 1px solid rgba(255,255,255,0.22);
  background: rgba(10,10,11,0.28);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.pj-rail-grid{ display: grid; grid-auto-flow: column; grid-auto-columns: 1fr; }
.pj-rail-item{ padding: 24px 22px 26px; border-right: 1px solid rgba(255,255,255,0.16); }
.pj-rail-item:first-child{ padding-left: 0; }
.pj-rail-item:last-child{ border-right: 0; }
.pj-rail-value{
  display: block;
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(22px, 2.4vw, 30px); letter-spacing: -0.03em; color: #fff;
  font-variant-numeric: tabular-nums;
}
.pj-rail-label{
  display: block; margin-top: 8px;
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* =========================================================
   STATEMENT
========================================================= */
.pj-statement-grid{
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 72px; align-items: start;
}
.pj-statement-lead{
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(28px, 3.6vw, 44px); line-height: 1.16; letter-spacing: -0.035em;
  color: var(--ink);
}
.pj-statement-body{ padding-top: 8px; }
.pj-statement-body p{
  font-size: 16px; font-weight: 300; line-height: 1.9; color: var(--n-700); margin-bottom: 22px;
}
.pj-statement-body p:last-child{ margin-bottom: 0; }

/* Reveal */
.pj-reveal{ opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.pj-reveal.is-in{ opacity: 1; transform: none; }

/* =========================================================
   TOUR — copy left, card slider right, both in sync
========================================================= */
.pj-tour-grid{
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 72px; align-items: center;
}

/* Panels stack in one grid cell so the column sizes to the tallest */
.pj-tour-panels{ display: grid; }
.pj-tour-panel{
  grid-area: 1 / 1;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 420ms var(--ease-out), transform 420ms var(--ease-out), visibility 420ms;
}
.pj-tour-panel.is-active{ opacity: 1; visibility: visible; transform: none; }
.pj-tour-tag{
  display: inline-block; margin-bottom: 16px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--n-400);
  padding-bottom: 8px; border-bottom: 1px solid var(--n-200);
}
.pj-tour-panel h2{
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(26px, 3.2vw, 38px); line-height: 1.12; letter-spacing: -0.033em;
  color: var(--ink); margin-bottom: 20px;
}
.pj-tour-panel p{ font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--n-700); }

.pj-tour-controls{
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  margin-top: 44px; padding-top: 24px; border-top: 1px solid var(--n-200);
}
.pj-tour-count{ font-size: 12px; letter-spacing: 0.14em; font-variant-numeric: tabular-nums; }
.pj-tour-current{ color: var(--ink); font-weight: 400; }
.pj-tour-total{ color: var(--n-400); font-weight: 300; }
.pj-tour-arrows{ display: flex; gap: 8px; }
.pj-tour-arrow{
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--n-200); background: none; color: var(--ink); cursor: pointer;
  transition: background var(--dur-fast) var(--ease-out), border-color var(--dur-fast) var(--ease-out), opacity var(--dur-fast) var(--ease-out);
}
.pj-tour-arrow.is-prev svg{ transform: scaleX(-1); }
.pj-tour-arrow:hover:not(:disabled){ background: var(--ink); border-color: var(--ink); color: #fff; }
.pj-tour-arrow:disabled{ opacity: 0.3; cursor: default; }

.pj-tour-dots{ display: flex; gap: 8px; margin-top: 22px; }
.pj-tour-dot{
  width: 26px; height: 2px; padding: 0; border: 0; cursor: pointer;
  background: var(--n-200);
  transition: background var(--dur-fast) var(--ease-out), width var(--dur-med) var(--ease-out);
}
.pj-tour-dot.is-active{ background: var(--ink); width: 44px; }

.pj-tour-stage{ overflow: hidden; }
.pj-tour-track{
  display: flex; gap: 18px;
  transition: transform 620ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.pj-tour-card{
  position: relative;
  flex: 0 0 86%;              /* the remainder is the peek of the next card */
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.45;
  transition: opacity 500ms var(--ease-out);
}
.pj-tour-card.is-active{ opacity: 1; cursor: default; }
.pj-tour-card img{ width: 100%; height: 100%; object-fit: cover; display: block; }
/* Caption sits at the top: the images carry a watermark along the bottom */
.pj-tour-card figcaption{
  position: absolute; left: 0; right: 0; top: 0;
  padding: 18px 22px 46px;
  background: linear-gradient(180deg, rgba(10,10,11,0.72) 0%, rgba(10,10,11,0) 100%);
  color: #fff;
  font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0; transition: opacity 400ms var(--ease-out);
}
.pj-tour-card.is-active figcaption{ opacity: 1; }

/* =========================================================
   DETAIL — floor-by-floor beside the spec table
========================================================= */
.pj-detail-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
.pj-level-list{ counter-reset: lvl; list-style: none; border-top: 1px solid var(--n-200); }
.pj-level-list li{
  counter-increment: lvl;
  display: grid; grid-template-columns: 34px 120px 1fr; gap: 18px; align-items: baseline;
  padding: 22px 0; border-bottom: 1px solid var(--n-200);
}
.pj-level-list li::before{
  content: "0" counter(lvl);
  font-size: 11px; font-weight: 400; letter-spacing: 0.14em; color: var(--n-400);
  font-variant-numeric: tabular-nums;
}
.pj-level-name{
  font-family: var(--font-display); font-weight: 400; font-size: 17px;
  letter-spacing: -0.015em; color: var(--ink);
}
.pj-level-detail{ font-size: 14.5px; font-weight: 300; line-height: 1.7; color: var(--n-500); }

.pj-spec-table{ border-top: 1px solid var(--n-200); }
.pj-spec-table > div{
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 15px 0; border-bottom: 1px solid var(--n-200);
}
.pj-spec-table dt{
  font-size: 11px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--n-400); flex: none;
}
.pj-spec-table dd{
  font-size: 15px; font-weight: 300; color: var(--ink); text-align: right;
  font-variant-numeric: tabular-nums;
}
.pj-permits{
  display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 22px;
  font-size: 11.5px; font-weight: 300; color: var(--n-400); font-variant-numeric: tabular-nums;
}

/* =========================================================
   AMENITIES
========================================================= */
.pj-amenities-intro{
  max-width: 640px; margin-bottom: 48px; margin-top: -14px;
  font-size: 15.5px; font-weight: 300; line-height: 1.85; color: var(--n-700);
}
.pj-amenities-grid{ display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 72px; align-items: start; }
.pj-amenity-cols{ display: grid; grid-template-columns: 1fr 1fr; gap: 44px; }
.pj-amenity-cols h3{
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--n-400); padding-bottom: 14px; border-bottom: 1px solid var(--n-200); margin-bottom: 6px;
}
.pj-amenity-cols li{
  padding: 11px 0; border-bottom: 1px solid var(--n-100);
  font-size: 14.5px; font-weight: 300; color: var(--n-700);
}
.pj-amenities-media{ overflow: hidden; aspect-ratio: 4 / 5; }
.pj-amenities-media img{ width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================================================
   PAYMENT
========================================================= */
.pj-payment{ background: var(--ink); color: #fff; }
.pj-plan{ display: flex; gap: 2px; }
.pj-plan-step{ flex: 1 1 0; padding-right: 24px; }
.pj-plan-pct{
  display: block;
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(38px, 5vw, 62px); letter-spacing: -0.04em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.pj-plan-bar{ display: block; height: 3px; margin: 22px 0 20px; background: rgba(255,255,255,0.9); }
.pj-plan-step:nth-child(even) .pj-plan-bar{ background: rgba(255,255,255,0.32); }
.pj-plan-label{ display: block; font-size: 11.5px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; }
.pj-plan-detail{
  display: block; margin-top: 10px;
  font-size: 14px; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,0.55);
}
.pj-plan-note{
  margin-top: 34px; max-width: 640px;
  font-size: 13px; font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.45);
}
.pj-process{ margin-top: 72px; padding-top: 52px; border-top: 1px solid rgba(255,255,255,0.16); }
.pj-process ol{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; list-style: none; }
.pj-process-num{
  display: block; margin-bottom: 16px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em; color: rgba(255,255,255,0.4);
  font-variant-numeric: tabular-nums;
}
.pj-process-title{
  display: block; margin-bottom: 10px;
  font-family: var(--font-display); font-weight: 400; font-size: 17px; letter-spacing: -0.015em; color: #fff;
}
.pj-process-text{ display: block; font-size: 14px; font-weight: 300; line-height: 1.7; color: rgba(255,255,255,0.55); }
.pj-invest{
  margin-top: 72px; padding-top: 52px; border-top: 1px solid rgba(255,255,255,0.16);
  max-width: 860px;
}
.pj-invest p{
  font-family: var(--font-display); font-weight: 200;
  font-size: clamp(19px, 2.2vw, 26px); line-height: 1.55; letter-spacing: -0.025em;
  color: rgba(255,255,255,0.92);
}
.pj-invest cite{
  display: block; margin-top: 22px;
  font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); font-style: normal;
}

/* =========================================================
   LOCATION
========================================================= */
.pj-location-note{
  max-width: 640px; margin-top: -16px; margin-bottom: 52px;
  font-size: 16px; font-weight: 300; line-height: 1.85; color: var(--n-700);
}
.pj-location-grid{ display: grid; grid-template-columns: 1fr 0.7fr 1.2fr; gap: 52px; align-items: start; }
.pj-drive{ border-top: 1px solid var(--n-200); }
.pj-drive li{
  display: flex; justify-content: space-between; align-items: baseline; gap: 18px;
  padding: 14px 0; border-bottom: 1px solid var(--n-200);
  font-size: 14.5px; font-weight: 300; color: var(--n-700);
}
.pj-drive-time{ color: var(--ink); font-variant-numeric: tabular-nums; flex: none; }
.pj-doorstep{ border-top: 1px solid var(--n-200); }
.pj-doorstep li{
  padding: 14px 0; border-bottom: 1px solid var(--n-200);
  font-size: 14.5px; font-weight: 300; color: var(--n-700);
}
.pj-map{
  min-height: 380px; height: 100%;
  border: 1px solid var(--n-200); overflow: hidden;
  filter: grayscale(1) contrast(1.05);
  transition: filter var(--dur-med) var(--ease-out);
}
.pj-map:hover{ filter: grayscale(0.12) contrast(1); }
.pj-map iframe{ width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }
.pj-masterplan{ margin-top: 60px; border: 1px solid var(--n-200); }
.pj-masterplan img{ width: 100%; height: auto; display: block; }
.pj-masterplan figcaption{
  padding: 15px 20px; border-top: 1px solid var(--n-200);
  font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase; color: var(--n-400);
}

/* =========================================================
   GALLERY — scrolls inside the same column as everything else
========================================================= */
.pj-gallery-head{
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px;
  margin-bottom: 36px;
}
.pj-gallery-head .pj-h2{ margin-bottom: 0; }
.pj-gallery-hint{ font-size: 13px; font-weight: 300; color: var(--n-400); flex: none; }
.pj-gallery-strip{
  display: flex; gap: 14px;
  overflow-x: auto; padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}
.pj-shot{
  flex: 0 0 clamp(260px, 38%, 420px);
  scroll-snap-align: start;
  aspect-ratio: 3 / 2;
  padding: 0; border: 0; background: none; cursor: pointer; overflow: hidden;
}
.pj-shot img{ width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease-out); }
.pj-shot:hover img{ transform: scale(1.04); }
.pj-shot:focus-visible{ outline: 2px solid var(--ink); outline-offset: 2px; }

/* =========================================================
   CLOSING CTA
========================================================= */
.pj-close{ background: var(--ink); color: #fff; }
.pj-close-inner{ max-width: 700px; margin: 0 auto; text-align: center; }
.pj-close-copy{ font-size: 16px; font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.62); }
.pj-close-actions{ display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 38px; }
.pj-close-hours{
  margin-top: 28px;
  font-size: 11.5px; font-weight: 300; letter-spacing: 0.06em; color: rgba(255,255,255,0.38);
}

.pj-disclaimer{
  padding: 40px 0 52px;
  font-size: 12px; font-weight: 300; line-height: 1.75; color: var(--n-400);
}
.pj-disclaimer a{ color: var(--n-500); border-bottom: 1px solid var(--n-200); }
.pj-disclaimer a:hover{ color: var(--ink); border-bottom-color: var(--ink); }

/* =========================================================
   PERSISTENT ACTION BAR
========================================================= */
.pj-bar{
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  background: rgba(255,255,255,0.96);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--n-200);
  transform: translateY(100%);
  transition: transform 420ms var(--ease-out);
}
.pj-bar.is-visible{ transform: none; }
.pj-bar.is-muted{ transform: translateY(100%); }
.pj-bar-inner{
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.pj-bar-name{
  display: block;
  font-family: var(--font-display); font-weight: 400; font-size: 17px;
  letter-spacing: -0.02em; color: var(--ink);
}
.pj-bar-meta{
  display: block; margin-top: 3px;
  font-size: 12px; font-weight: 300; letter-spacing: 0.04em; color: var(--n-500);
}
.pj-bar-actions{ display: flex; align-items: center; gap: 10px; }
.pj-bar-actions .pj-btn{ padding: 13px 24px; }

/* =========================================================
   LIGHTBOX
========================================================= */
.pj-lightbox{
  position: fixed; inset: 0; z-index: 400;
  display: none; align-items: center; justify-content: center;
  padding: 64px 72px;
  background: rgba(10,10,11,0.95);
}
.pj-lightbox.is-open{ display: flex; }
.pj-lightbox img{ max-width: 100%; max-height: 100%; object-fit: contain; }
.pj-lightbox-close,
.pj-lightbox-nav{
  position: absolute; background: none; border: 0; color: #fff; cursor: pointer;
  opacity: 0.65; transition: opacity var(--dur-fast) var(--ease-out);
}
.pj-lightbox-close:hover, .pj-lightbox-nav:hover{ opacity: 1; }
.pj-lightbox-close{ top: 20px; right: 26px; font-size: 34px; line-height: 1; }
.pj-lightbox-nav{ top: 50%; transform: translateY(-50%); font-size: 46px; line-height: 1; padding: 0 18px; }
.pj-lightbox-nav.is-prev{ left: 6px; }
.pj-lightbox-nav.is-next{ right: 6px; }
.pj-lightbox-counter{
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  font-size: 12px; font-weight: 300; letter-spacing: 0.14em; color: rgba(255,255,255,0.6);
  font-variant-numeric: tabular-nums;
}

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px){
  .pj-location-grid{ grid-template-columns: 1fr 1fr; gap: 44px; }
  .pj-map{ grid-column: 1 / -1; min-height: 340px; }
  .pj-process ol{ grid-template-columns: repeat(2, 1fr); gap: 36px; }
}
@media (max-width: 940px){
  .pj-page{ --pj-pad: 32px; }
  .pj-section{ padding: 76px 0; }
  .pj-statement-grid,
  .pj-tour-grid,
  .pj-detail-grid,
  .pj-amenities-grid{ grid-template-columns: 1fr; gap: 40px; }
  .pj-tour-stage{ order: -1; }        /* image above the copy on narrow screens */
  .pj-amenities-media{ aspect-ratio: 16 / 10; }
}
@media (max-width: 720px){
  .pj-page{ --pj-pad: 20px; }
  .pj-section{ padding: 60px 0; }
  .pj-hero{ min-height: 92svh; }
  .pj-hero-kicker{ gap: 8px 12px; }
  .pj-hero-kicker span + span::before{ width: 10px; margin-right: 12px; }
  .pj-rail-grid{ grid-auto-flow: row; grid-template-columns: 1fr 1fr; grid-auto-columns: auto; }
  .pj-rail-item{ padding: 18px 16px 20px; border-bottom: 1px solid rgba(255,255,255,0.16); }
  .pj-rail-item:nth-child(2n){ border-right: 0; }
  .pj-rail-item:nth-child(odd){ padding-left: 0; }
  .pj-rail-item:last-child{ grid-column: 1 / -1; border-right: 0; border-bottom: 0; }

  .pj-tour-card{ flex-basis: 100%; }
  .pj-tour-controls{ margin-top: 32px; }
  .pj-level-list li{ grid-template-columns: 30px 1fr; row-gap: 6px; }
  .pj-level-detail{ grid-column: 2; }
  .pj-amenity-cols{ grid-template-columns: 1fr; gap: 34px; }
  .pj-plan{ flex-direction: column; gap: 34px; }
  .pj-plan-step{ padding-right: 0; }
  .pj-process{ margin-top: 52px; padding-top: 40px; }
  .pj-process ol{ grid-template-columns: 1fr; gap: 28px; }
  .pj-invest{ margin-top: 52px; padding-top: 40px; }
  .pj-location-grid{ grid-template-columns: 1fr; gap: 36px; }
  .pj-masterplan{ margin-top: 40px; }
  .pj-gallery-head{ flex-direction: column; align-items: flex-start; gap: 10px; }
  .pj-shot{ flex-basis: 80%; }
  .pj-close-actions .pj-btn{ flex: 1 1 auto; }
  .pj-disclaimer{ padding: 30px 0 100px; }

  .pj-bar-inner{ padding-top: 10px; padding-bottom: 10px; gap: 12px; }
  .pj-bar-id{ min-width: 0; }
  .pj-bar-name{ font-size: 15px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .pj-bar-meta{ font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .pj-bar-wa span{ display: none; }
  .pj-bar-actions .pj-btn{ padding: 12px 16px; font-size: 10.5px; }

  .pj-lightbox{ padding: 56px 16px; }
  .pj-lightbox-nav{ font-size: 36px; padding: 0 8px; }
}
