/* ===========================================================================
 *  Experion Elements - modern paid-campaign layout
 * ===========================================================================
 *  Loaded last, after the shared Experion theme and main.css. Everything is
 *  scoped to body.pp-el or to pp- prefixed classes so the theme's own rules
 *  (still needed by the popup and form widgets) are left alone.
 *
 *  Palette: midnight navy + champagne gold, taken from the campaign banner,
 *  over warm ivory and a cool mist. Headings in Gilda Display, body in Barlow.
 *
 *  Contents
 *    0. Tokens and base
 *    1. Buttons, eyebrows, section heads
 *    2. Header and section navigation
 *    3. Banner
 *    4. Overview, fact card, five elements
 *    5. Video cards (walkthrough, route)
 *    6. Floor plans
 *    7. Gallery slider
 *    8. Amenities
 *    9. Location
 *    10. Disclaimer, other projects
 *    11. Footer
 *    12. Enquiry popup, side tabs, progress ring
 *    13. Scroll reveal
 *    14. Responsive
 * ======================================================================== */

/* ---------------------------------------------------------------------------
 * 0. Tokens and base
 * ------------------------------------------------------------------------ */
:root {
  --navy-950: #0a1324;
  --navy-900: #101d35;
  --navy-800: #172a4a;
  --navy-700: #22395f;
  --gold: #c29b52;
  --gold-600: #a47f3a;
  --gold-300: #dcc28f;
  --gold-100: #f4ecdc;
  --ivory: #f8f5ef;
  --mist: #eef1f6;
  --white: #fff;
  --ink: #0f1a2e;
  --text: #3d4658;
  --muted: #6b7385;
  --line: #e4ddd0;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px -24px rgba(10, 19, 36, 0.35);
  --shadow-sm: 0 10px 30px -14px rgba(10, 19, 36, 0.28);
  /* main.js measures the real header and overwrites this. */
  --hdr-h: 80px;
  --serif: "Gilda Display", Georgia, serif;
  --sans: "Barlow", "Helvetica Neue", Arial, sans-serif;
}

body.pp-el {
  background: var(--white);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

/* Sections land just below the fixed header, whether reached by a nav link,
   a shared #hash URL or the browser's own anchor jump. */
.pp-el section[id] {
  scroll-margin-top: var(--hdr-h);
}

/* The theme paints every paragraph black at 15px - reset inside the page. */
.pp-el .pp-main p,
.pp-el .pp-footer p {
  color: inherit;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  margin: 0 0 1em;
  /* The theme justifies copy, which opens gaps in narrow cards. */
  text-align: inherit;
}

/* custom.css justifies "#overview p" by id, so it needs an id to undo. */
.pp-el #overview p {
  text-align: left;
}

.pp-el #overview .pp-element p {
  text-align: center;
}

.pp-el .pp-main h1,
.pp-el .pp-main h2,
.pp-el .pp-main h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.2px;
  line-height: 1.2;
  font-size: 30px;
}

.pp-el figure {
  margin: 0;
}

.pp-el .pp-main img {
  display: block;
  max-width: 100%;
  transition: none;
}

.pp-section {
  padding: 100px 0;
}

.pp-section-ivory {
  background: var(--ivory);
}

.pp-section-mist {
  background: var(--mist);
}

.pp-section-dark {
  background:
    radial-gradient(1100px 480px at 85% -10%, rgba(194, 155, 82, 0.16), transparent 60%),
    var(--navy-900);
  color: rgba(255, 255, 255, 0.78);
}

.pp-section-dark .pp-title,
.pp-section-dark h3 {
  color: var(--white) !important;
}

/* ---------------------------------------------------------------------------
 * 1. Buttons, eyebrows, section heads
 * ------------------------------------------------------------------------ */
.pp-el .pp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 12px 28px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.2px;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

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

.pp-el .pp-btn:focus-visible {
  outline: 3px solid rgba(194, 155, 82, 0.55);
  outline-offset: 2px;
}

.pp-el .pp-btn-gold {
  background: var(--gold);
  color: var(--navy-950);
  box-shadow: 0 10px 24px -10px rgba(194, 155, 82, 0.8);
}

.pp-el .pp-btn-gold:hover {
  background: var(--gold-300);
  color: var(--navy-950);
}

.pp-el .pp-btn-dark {
  background: var(--navy-900);
  color: var(--white);
}

.pp-el .pp-btn-dark:hover {
  background: var(--navy-700);
  color: var(--white);
}

.pp-el .pp-btn-outline {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.pp-el .pp-btn-outline:hover {
  background: var(--navy-900);
  color: var(--white);
}

.pp-el .pp-btn-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
}

.pp-el .pp-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

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

.pp-cta_row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.pp-cta_row-center {
  justify-content: center;
}

.pp-el .pp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: var(--gold-600);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.pp-eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.pp-section-dark .pp-eyebrow {
  color: var(--gold);
}

.pp-el .pp-title {
  font-size: clamp(30px, 3.6vw, 46px);
}

.pp-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.pp-head .pp-eyebrow::after {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
}

.pp-el .pp-head p {
  margin: 16px 0 0;
  opacity: 0.85;
}

.pp-head-sub {
  margin-top: 96px;
}

/* Small "for reference" note laid over an image. */
.pp-el .pp-note {
  position: absolute;
  right: 12px;
  bottom: 10px;
  z-index: 2;
  display: block;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(10, 19, 36, 0.5);
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  line-height: 1.4;
  text-transform: uppercase;
  pointer-events: none;
}

/* ---------------------------------------------------------------------------
 * 2. Header and section navigation
 * ------------------------------------------------------------------------ */
.pp-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(15, 26, 46, 0.06);
  transition: box-shadow 0.3s ease;
}

.pp-header.is-scrolled {
  box-shadow: 0 10px 30px -18px rgba(10, 19, 36, 0.45);
}

.pp-header_in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.pp-el .pp-logo {
  display: block;
  flex-shrink: 0;
}

.pp-el .pp-logo img {
  display: block;
  width: auto;
  height: 54px;
}

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

.pp-nav ul {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 0;
}

.pp-el .pp-nav ul a {
  position: relative;
  display: block;
  padding: 10px 14px;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.pp-nav ul a::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 4px;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.pp-el .pp-nav ul a:hover,
.pp-el .pp-nav ul a.active {
  color: var(--gold-600);
}

.pp-nav ul a.active::after {
  transform: scaleX(1);
}


/* Burger - three bars that fold into a cross while the drawer is open. */
.pp-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0 10px;
  border: 0;
  border-radius: 10px;
  background: var(--ivory);
  cursor: pointer;
}

.pp-nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-900);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* ---------------------------------------------------------------------------
 * 3. Banner
 *    The creative is shown whole at its own ratio - it carries the logo, the
 *    RERA block and the legal line right at its edges.
 * ------------------------------------------------------------------------ */
.pp-banner {
  position: relative;
  margin-top: var(--hdr-h);
  background: var(--navy-950);
}

.pp-el .pp-banner_img {
  display: block;
  width: 100%;
  height: auto;
}

.pp-el .pp-banner_scroll {
  position: absolute;
  bottom: 42px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-left: -23px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(10, 19, 36, 0.35);
  color: #fff;
  animation: pp-bounce 2.2s ease-in-out infinite;
}

.pp-el .pp-banner_scroll:hover {
  border-color: var(--gold);
  color: var(--gold);
}

@keyframes pp-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* ---------------------------------------------------------------------------
 * 4. Overview, fact card, five elements
 * ------------------------------------------------------------------------ */
.pp-split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

/* Overview: the project logo on the left, the copy on the right. */
.pp-split-intro {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.6fr);
  gap: 56px;
}

.pp-intro_logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(420px 220px at 50% 40%, rgba(194, 155, 82, 0.18), transparent 70%),
    var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.pp-el .pp-intro_logo img {
  width: 100%;
  max-width: 320px;
  height: auto;
}

.pp-split_text .pp-title {
  margin-bottom: 24px;
}

.pp-el .pp-split_text strong {
  color: var(--ink);
}

.pp-factcard {
  position: relative;
  padding: 44px 40px;
  border-radius: var(--radius);
  background:
    radial-gradient(600px 300px at 100% 0%, rgba(194, 155, 82, 0.2), transparent 60%),
    var(--navy-900);
  box-shadow: var(--shadow);
  color: #fff;
  overflow: hidden;
}

.pp-factcard::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(194, 155, 82, 0.3);
  border-radius: calc(var(--radius) - 8px);
  pointer-events: none;
}

.pp-el .pp-factcard_logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 30px;
}

.pp-factlist {
  margin: 0;
  padding: 0;
}

.pp-factlist li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-el .pp-factlist span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pp-el .pp-factlist strong {
  color: #fff;
  font-weight: 500;
  text-align: right;
}

/* The five element illustrations are drawn on white, so each sits on its own
   white card rather than on the ivory section background. */
.pp-elements {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}

.pp-element {
  flex: 0 1 calc((100% - 88px) / 5);
  min-width: 0;
  padding: 26px 22px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.pp-element:hover {
  transform: translateY(-6px);
  border-color: var(--gold-300);
  box-shadow: var(--shadow-sm);
}

.pp-el .pp-element img {
  width: 100%;
  max-width: 170px;
  height: auto;
  aspect-ratio: 600 / 440;
  margin: 0 auto 14px;
  object-fit: contain;
}

.pp-el .pp-element h3 {
  font-size: 28px;
}

.pp-el .pp-element_sub {
  display: block;
  margin: 6px 0 12px;
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.pp-el .pp-element p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------------------------------------------------------------------------
 * 5. Video cards (walkthrough, route)
 *    Both thumbnails are 16:9 and the box is held to that ratio.
 * ------------------------------------------------------------------------ */
.pp-video {
  max-width: 1040px;
  margin: 0 auto;
}

.pp-el .pp-video_card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pp-el .pp-video_card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pp-video_card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 19, 36, 0.65));
}

.pp-video_card:hover img {
  transform: scale(1.04);
}

.pp-el .pp-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-950);
  font-size: 24px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 12px rgba(194, 155, 82, 0.28);
  animation: pp-pulse 2.4s ease-out infinite;
}

.pp-play i {
  margin-left: 4px;
}

@keyframes pp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(194, 155, 82, 0.5); }
  100% { box-shadow: 0 0 0 26px rgba(194, 155, 82, 0); }
}

/* Centred under the play button - the thumbnails carry their own small print
   in the bottom corners. */
.pp-el .pp-video_label {
  position: absolute;
  top: calc(50% + 62px);
  right: 0;
  left: 0;
  z-index: 2;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ---------------------------------------------------------------------------
 * 6. Floor plans
 * ------------------------------------------------------------------------ */
.pp-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  max-width: 1040px;
  margin: 0 auto;
}

.pp-plan {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* The head of each card is the original gold unit illustration on a navy
   blueprint grid. The plan drawing itself is gated, so the whole panel opens
   the enquiry popup. */
.pp-el .pp-plan_visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 260px;
  background:
    radial-gradient(260px 200px at 50% 45%, rgba(194, 155, 82, 0.22), transparent 70%),
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--navy-900);
  overflow: hidden;
}

.pp-el .pp-plan_visual img {
  width: 150px;
  height: 150px;
  margin-bottom: 34px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.pp-plan_visual:hover img {
  transform: scale(1.06);
}

.pp-el .pp-plan_size {
  position: absolute;
  top: 18px;
  left: 20px;
  color: #fff;
  font-family: var(--serif);
  font-size: 22px;
}

.pp-el .pp-plan_lock {
  position: absolute;
  bottom: 20px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-950);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
  transition: background 0.25s ease;
}

.pp-plan_visual:hover .pp-plan_lock {
  background: var(--gold-300);
}

.pp-plan_ctas {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pp-el .pp-plan_ctas .pp-btn {
  padding: 12px 16px;
}

.pp-plan_body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px 32px 32px;
}

.pp-el .pp-tag {
  align-self: flex-start;
  margin-bottom: 10px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.pp-el .pp-plan_body h3 {
  margin-bottom: 18px;
  font-size: 36px;
}

.pp-specs {
  flex: 1;
  margin: 0 0 26px;
  padding: 0;
}

.pp-specs li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px 16px;
  padding: 14px 0;
  border-top: 1px dashed var(--line);
}

.pp-el .pp-specs span {
  color: var(--muted);
  font-size: 14px;
}

.pp-el .pp-specs strong {
  color: var(--ink);
  font-weight: 600;
}

.pp-specs em {
  color: var(--muted);
  font-style: normal;
  font-weight: 400;
}

/* ---------------------------------------------------------------------------
 * 7. Gallery slider
 *    Centre-stage carousel: the active slide at full strength, its
 *    neighbours peeking in, dimmed. Slides keep the images' 32:15 ratio.
 * ------------------------------------------------------------------------ */
.pp-gallery {
  overflow: hidden;
}

.pp-el .pp-shot {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  opacity: 0.4;
  transform: scale(0.94);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pp-gallery_slider .owl-item.center .pp-shot {
  opacity: 1;
  transform: none;
}

/* Before owl starts (or with no JS) the slides stack - show them whole. */
.pp-gallery_slider:not(.owl-loaded) {
  display: grid;
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.pp-gallery_slider:not(.owl-loaded) .pp-shot {
  opacity: 1;
  transform: none;
}

.pp-el .pp-shot a {
  display: block;
}

.pp-el .pp-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: 1920 / 900;
  object-fit: cover;
}

.pp-gallery .owl-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px !important;
}

.pp-gallery .owl-nav button.owl-prev,
.pp-gallery .owl-nav button.owl-next {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50% !important;
  background: transparent !important;
  color: #fff !important;
  font-size: 16px !important;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.pp-gallery .owl-nav button.owl-prev:hover,
.pp-gallery .owl-nav button.owl-next:hover {
  border-color: var(--gold) !important;
  background: var(--gold) !important;
  color: var(--navy-950) !important;
}

.pp-gallery .owl-dots {
  margin-top: 18px !important;
  text-align: center;
}

.pp-gallery .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px;
  background: rgba(255, 255, 255, 0.3);
  transition: width 0.3s ease, background 0.3s ease;
}

.pp-gallery .owl-dots .owl-dot.active span,
.pp-gallery .owl-dots .owl-dot:hover span {
  width: 26px;
  background: var(--gold);
}

/* ---------------------------------------------------------------------------
 * 8. Amenities
 *    Three to a row; a short last row is centred. Images keep their 2:1.
 * ------------------------------------------------------------------------ */
.pp-amenities {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
}

.pp-amenity {
  display: flex;
  flex: 0 1 calc((100% - 56px) / 3);
  flex-direction: column;
  min-width: 0;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pp-amenity_img {
  position: relative;
  overflow: hidden;
}

.pp-el .pp-amenity_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.pp-amenity:hover .pp-amenity_img img {
  transform: scale(1.05);
}

.pp-el .pp-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.3;
  text-transform: uppercase;
}

.pp-amenity figcaption {
  padding: 24px 26px 28px;
}

.pp-el .pp-amenity h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.pp-el .pp-amenity p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* ---------------------------------------------------------------------------
 * 9. Location
 * ------------------------------------------------------------------------ */
.pp-location {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.pp-location_map {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pp-location_map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  aspect-ratio: 16 / 9;
  border: 0;
}

.pp-head p .ti-location-pin {
  margin-right: 6px;
  color: var(--gold-600);
}

/* ---------------------------------------------------------------------------
 * 10. Disclaimer, other projects
 * ------------------------------------------------------------------------ */
/* The disclaimer sits in the footer, between the columns and the copyright
   line, as small print on the navy ground. */
.pp-disclaimer {
  padding: 34px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pp-el .pp-footer .pp-disclaimer_title {
  margin: 0 0 12px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.pp-el .pp-footer .pp-disclaimer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
  line-height: 1.8;
  text-align: justify;
}

.pp-el .pp-footer .pp-disclaimer strong {
  color: rgba(255, 255, 255, 0.8);
}

.pp-el .pp-footer .pp-disclaimer a {
  display: inline;
  color: var(--gold);
}

.pp-projects {
  padding: 50px 0 !important;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.pp-el .pp-main .pp-projects_title {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
}

.pp-projects .clients-logo img {
  opacity: 0.75;
  filter: grayscale(0.4);
  transition: opacity 0.3s ease, filter 0.3s ease;
}

.pp-projects .clients-logo:hover img {
  opacity: 1;
  filter: none;
}

/* ---------------------------------------------------------------------------
 * 11. Footer
 * ------------------------------------------------------------------------ */
.pp-footer {
  padding-top: 70px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.7);
}

.pp-footer_grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 50px;
}

/* The corporate mark is drawn for a light ground, so it gets its own chip. */
.pp-el .pp-footer_logo {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 16px;
  border-radius: 12px;
  background: #fff;
}

.pp-el .pp-footer_logo img {
  display: block;
  width: auto;
  height: 54px;
}

.pp-el .pp-footer_title {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.pp-el .pp-footer p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.pp-footer_links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0;
  padding: 0;
}

.pp-el .pp-footer_links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  transition: color 0.25s ease, padding 0.25s ease;
}

.pp-el .pp-footer_links a:hover,
.pp-el .pp-footer_links a.active {
  padding-left: 4px;
  color: var(--gold);
}

.pp-social {
  display: flex;
  gap: 10px;
}

.pp-el .pp-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.pp-el .pp-social a:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--navy-950);
}

.pp-footer_bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  text-align: center;
}

/* ---------------------------------------------------------------------------
 * 12. Enquiry popup, side tabs, progress ring
 * ------------------------------------------------------------------------ */
.pp-el .popup_module .popup_module_in {
  background: rgba(10, 19, 36, 0.78);
  backdrop-filter: blur(4px);
}

.pp-el .popup_module .popup_container {
  width: 460px;
  padding: 0 28px 26px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

/* Navy head band carrying the gold project logo. */
.pp-el .enquire_logo {
  display: block;
  width: calc(100% + 56px);
  max-width: none;
  height: auto;
  margin: 0 -28px 20px;
  padding: 26px 70px;
  background: var(--navy-900);
  object-fit: contain;
}

.pp-el .popup_module span.pop_close {
  top: 12px;
  right: 16px;
  z-index: 2;
  color: #fff;
  opacity: 0.7;
}

.pp-el .popup_module span.pop_close:hover {
  opacity: 1;
}

.pp-el .enquire_title {
  margin-bottom: 4px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 26px;
}

.pp-el .enquire_sub {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
}

.pp-el .popup_module .form-control {
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  color: var(--ink);
  font-size: 15px;
  box-shadow: none;
}

.pp-el .popup_module .form-control:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(194, 155, 82, 0.18);
}

.pp-el .popup_module .form-control.is-invalid {
  border-color: #d0021b;
}

.pp-el .popup_module .form-check-label {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.pp-el .popup_module .form-check-input:checked {
  border-color: var(--gold);
  background-color: var(--gold);
}

.pp-el .popup_module .butn-dark2 {
  width: 100%;
  min-height: 52px;
  margin-top: 6px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--navy-950);
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  overflow: hidden;
}

.pp-el .popup_module .butn-dark2::after {
  background: var(--navy-900);
}

.pp-el .side_cta_tab {
  background: var(--navy-900);
  border: 1px solid rgba(194, 155, 82, 0.6);
  border-right: 0;
  color: var(--gold);
}

.pp-el .side_cta_tab + .side_cta_tab {
  background: var(--gold);
  color: var(--navy-950);
}

.pp-el .side_cta_tab:hover,
.pp-el .side_cta_tab:focus {
  background: var(--gold-600);
  color: #fff;
}

.pp-el .progress-wrap {
  box-shadow: inset 0 0 0 2px rgba(15, 26, 46, 0.15);
}

.pp-el .progress-wrap::after {
  color: var(--gold-600);
}

.pp-el .progress-wrap svg.progress-circle path {
  stroke: var(--gold);
}

.pp-el .sticky_enquiry_form .butn-dark2 {
  border-radius: 999px;
  color: var(--navy-950);
}

.pp-el .sticky_enquiry_form .form-control {
  border-radius: var(--radius-sm);
}

/* ---------------------------------------------------------------------------
 * 13. Scroll reveal
 *    Only armed once main.js has put .pp-js on <html>, so with no JS the
 *    content is simply shown.
 * ------------------------------------------------------------------------ */
.pp-js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.pp-js .reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .pp-js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .pp-el .pp-play,
  .pp-el .pp-banner_scroll {
    animation: none;
  }
}

/* ---------------------------------------------------------------------------
 * 14. Responsive
 * ------------------------------------------------------------------------ */
@media (max-width: 1199px) {
  .pp-element {
    flex-basis: calc((100% - 44px) / 3);
  }

  .pp-amenity {
    flex-basis: calc((100% - 28px) / 2);
  }
}

/* Below 992px the section links move into a drop-down drawer. */
@media (max-width: 991px) {
  .pp-nav-toggle {
    display: flex;
  }

  .pp-nav {
    position: fixed;
    top: var(--hdr-h);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - var(--hdr-h));
    padding: 8px 20px 24px;
    background: #fff;
    box-shadow: 0 24px 40px -20px rgba(10, 19, 36, 0.4);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }

  .pp-nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .pp-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .pp-el .pp-nav ul a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    letter-spacing: 2px;
  }

  .pp-nav ul a::after {
    display: none;
  }


}

/* Tablets and phones: a shorter header and single-column layouts. */
@media (max-width: 991px) {
  :root {
    --hdr-h: 68px;
  }

  .pp-header_in {
    min-height: 68px;
  }

  .pp-el .pp-logo img {
    height: 44px;
  }

  .pp-section {
    padding: 76px 0;
  }

  .pp-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pp-head-sub {
    margin-top: 72px;
  }

  .pp-plans,
  .pp-location {
    grid-template-columns: 1fr;
  }

  .pp-plans {
    max-width: 560px;
  }

  .pp-footer_grid {
    grid-template-columns: 1fr 1fr;
  }

  .pp-footer_col:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .pp-section {
    padding: 60px 0;
  }

  .pp-head {
    margin-bottom: 36px;
  }

  .pp-el .pp-main p {
    font-size: 15px;
  }

  .pp-el .pp-banner_scroll {
    display: none;
  }

  .pp-factcard {
    padding: 34px 24px;
  }

  .pp-factlist li {
    flex-direction: column;
    gap: 4px;
  }

  .pp-el .pp-factlist strong {
    text-align: left;
  }

  .pp-elements {
    gap: 14px;
  }

  .pp-element {
    flex-basis: calc((100% - 14px) / 2);
    padding: 20px 14px 22px;
  }

  .pp-el .pp-element h3 {
    font-size: 24px;
  }

  .pp-el .pp-element p {
    font-size: 14px;
  }

  .pp-amenity {
    flex-basis: 100%;
  }

  .pp-el .pp-play {
    width: 64px;
    height: 64px;
    font-size: 18px;
  }

  .pp-el .pp-video_label {
    top: calc(50% + 46px);
    font-size: 12px;
  }

  .pp-plan_body {
    padding: 24px 22px 26px;
  }

  .pp-el .pp-plan_visual {
    height: 170px;
  }

  .pp-cta_row .pp-btn {
    flex: 1 1 100%;
  }

  .pp-footer_grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pp-el .popup_module .popup_container {
    padding: 0 20px 22px;
  }

  .pp-el .enquire_logo {
    width: calc(100% + 40px);
    margin: 0 -20px 16px;
    padding: 22px 50px;
  }
}

/* Justified small print opens wide gaps on a phone-width column. */
@media (max-width: 767px) {
  .pp-el .pp-footer .pp-disclaimer p {
    text-align: left;
  }
}

/* ===========================================================================
 * 15. Conversion blocks
 *     Offer strip, price table, tick lists, inline brochure card, the
 *     site-visit band with its inline form, and the phone action bar.
 * ======================================================================== */

/* Small and navy-outline button variants. */
.pp-el .pp-btn-sm {
  min-height: 42px;
  padding: 9px 20px;
  font-size: 12.5px;
}

.pp-el .pp-btn-line {
  border-color: var(--navy-900);
  color: var(--navy-900);
}

.pp-el .pp-btn-line:hover {
  background: var(--navy-900);
  color: #fff;
}

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

/* ---- Tick lists ---------------------------------------------------------- */
.pp-ticks {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 0;
}

.pp-el .pp-ticks li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 500;
}

.pp-ticks li::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-100) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M4 8.5l2.5 2.5L12 5.5' fill='none' stroke='%23a47f3a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}

/* ---- Walkthrough: copy beside the video --------------------------------- */
.pp-split-video {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr);
}

.pp-split-video .pp-video {
  max-width: none;
  margin: 0;
}

/* The band's text is white; the form card is not. */
/* ---- Phone action bar ---------------------------------------------------- */
.pp-mobile_bar {
  display: none;
}

/* ---- Responsive ------------------------------------------------------------ */
@media (max-width: 991px) {
  .pp-split-video {
    grid-template-columns: 1fr;
    gap: 40px;
  }

}

@media (max-width: 767px) {
  /* Price rows become stacked cards with inline labels. */
  .pp-plan_ctas {
    grid-template-columns: 1fr;
  }

  .pp-el .pp-plan_visual {
    height: 220px;
  }

  .pp-el .pp-plan_visual img {
    width: 120px;
    height: 120px;
  }

  /* The action bar replaces the side tabs on phones. */
  .pp-el .side_cta {
    display: none;
  }

  .pp-mobile_bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 98;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    background: var(--navy-900);
    box-shadow: 0 -6px 20px rgba(10, 19, 36, 0.35);
  }

  .pp-el .pp-mobile_bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 56px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .pp-mobile_bar a + a {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .pp-el .pp-mobile_bar a.is-primary {
    background: var(--gold);
    color: var(--navy-950);
  }

  body.pp-el.element_page {
    padding-bottom: 56px;
  }

  .pp-el .progress-wrap {
    bottom: 72px;
  }

  body.is-popup-open .pp-mobile_bar,
  body.is-otp-open .pp-mobile_bar {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
 * 16. Gallery on a light ground
 *     Price (navy) sits directly above the gallery, so the gallery switches
 *     to white and its arrows and dots switch to navy.
 * ------------------------------------------------------------------------ */
.pp-gallery-light .owl-nav button.owl-prev,
.pp-gallery-light .owl-nav button.owl-next {
  border-color: rgba(15, 26, 46, 0.2) !important;
  color: var(--navy-900) !important;
}

.pp-gallery-light .owl-dots .owl-dot span {
  background: rgba(15, 26, 46, 0.2);
}

.pp-gallery-light .pp-shot {
  box-shadow: var(--shadow-sm);
}

/* ---------------------------------------------------------------------------
 * 17. Amenities as a slider on phones
 *     main.js turns the grid into an Owl carousel below 768px and takes it
 *     apart again above, so the desktop grid is untouched.
 * ------------------------------------------------------------------------ */
.pp-amenities.owl-carousel {
  display: block;
}

.pp-amenities.owl-carousel .owl-item .pp-amenity {
  flex-basis: auto;
  width: 100%;
}

.pp-amenities.owl-carousel .owl-dots {
  margin-top: 18px !important;
  text-align: center;
}

.pp-amenities.owl-carousel .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  margin: 4px;
  background: rgba(15, 26, 46, 0.2);
  transition: width 0.3s ease, background 0.3s ease;
}

.pp-amenities.owl-carousel .owl-dots .owl-dot.active span {
  width: 26px;
  background: var(--gold);
}
