/* === PIP Design System — tokens (design spec §2) === */
:root {
	--pip-white: #FFFFFF;
	--pip-surface: #F6F6F6;
	--pip-ink: #0D0D0D;
	--pip-ink-60: #6B6B6B;
	--pip-ink-30: #C2C2C2;
	--pip-gold: #C4992A;
	--pip-gold-light: #F5EDD6;
	/* Financial figures. Inter with tabular figures reads premium and aligns in
	   columns, without the robotic feel of a monospace. Swap this one value to
	   restyle every number on the site. */
	--pip-figure: 'Inter', sans-serif;
	--pip-dark: #111111;
	--pip-glass-light: rgba(255, 255, 255, 0.72);
	--pip-glass-dark: rgba(13, 13, 13, 0.60);
	--pip-overlay: rgba(0, 0, 0, 0.55);
	--pip-score-high: #2D7D46;
	--pip-score-mid: #C4992A;
	--pip-score-low: #C44B2A;
	--pip-shadow: 0 4px 24px rgba(0,0,0,0.06);
	--pip-shadow-hover: 0 12px 40px rgba(0,0,0,0.12);
	--radius-sm: 8px; --radius-md: 16px; --radius-lg: 24px; --radius-pill: 9999px;
	--space-1: 8px; --space-2: 16px; --space-3: 24px; --space-4: 32px;
	--space-5: 48px; --space-6: 64px; --space-7: 96px; --space-8: 128px;
}

body { font-family: 'Inter', sans-serif; color: var(--pip-ink); }
h1, h2 { font-family: 'Syne', sans-serif; }
h1 { font-size: 52px; font-weight: 700; line-height: 1.1; }
h2 { font-size: 40px; font-weight: 700; line-height: 1.15; }
h3 { font-family: 'Inter', sans-serif; font-size: 24px; font-weight: 600; line-height: 1.3; }
.pip-mono, .pip-data-cell__value, .pip-property-card__yield, .pip-property-card__number,
.pip-score-ring__value, .pip-calculator__result, .pip-table__date {
	font-family: var(--pip-figure);
	font-variant-numeric: tabular-nums;
	font-feature-settings: "tnum" 1, "lnum" 1;
	font-weight: 500;
	letter-spacing: -0.01em;
}
@media (max-width: 767px) {
	h1 { font-size: 32px; } h2 { font-size: 26px; }
	/* Hero headline: spec mobile scale (~40px target). The Elementor element
	   sets 28px; lift toward the scale. "Marketplace" is the longest word and
	   must not overflow the centred box at 380px, so 30px is the clip-safe max.
	   !important to beat the per-element Elementor typography rule. */
	.elementor-element-pipheh1 h1,
	.elementor-element-pipheh1 .elementor-heading-title { font-size: 30px !important; line-height: 1.1 !important; }
}

/* === Layout helpers (site-specific, not in spec) === */
.pip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 1199px) { .pip-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px)  { .pip-grid { grid-template-columns: 1fr; } }
.pip-grid__empty { color: var(--pip-ink-60); padding: var(--space-5) 0; text-align: center; grid-column: 1 / -1; }
.pip-grid__item { position: relative; }
.pip-property-card__link { display: block; color: inherit; text-decoration: none; }
.pip-property-card__type { font-size: 14px; color: rgba(255,255,255,0.75); margin: 2px 0 0; }
.pip-property-card__image--empty { background: var(--pip-surface); aspect-ratio: 4/3; }
.pip-property-card__controls-right { display: flex; gap: 8px; align-items: center; }
.pip-property-card__yield--locked { color: rgba(255,255,255,0.6); font-size: 12px; }
.pip-pagination { display: flex; gap: 8px; justify-content: center; margin-top: var(--space-5); }

/* === Gate / locked panels === */
.pip-gate-locked {
	background: var(--pip-dark); color: var(--pip-white); border-radius: var(--radius-md);
	padding: var(--space-5) var(--space-4); text-align: center;
}
.pip-gate-locked .btn-primary { background: var(--pip-gold); color: var(--pip-ink); margin-top: var(--space-2); display: inline-block; text-decoration: none; }
.pip-gate-locked__icon { font-size: 28px; display: block; margin-bottom: var(--space-1); }
.pip-scorecard--locked .pip-score-ring { filter: blur(6px); }
.pip-scorecard__gate { text-align: center; margin-top: var(--space-3); }

/* === Scorecard layout === */
.pip-scorecard { background: var(--pip-white); border: 1px solid var(--pip-ink-30); border-radius: var(--radius-md); padding: var(--space-4); }
.pip-scorecard__rings { display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: center; }
.pip-score-ring-wrap { text-align: center; }
.pip-score-ring { position: relative; margin: 0 auto; }
.pip-score-ring__label { font-size: 11px; color: var(--pip-ink-60); margin-top: 6px; font-family: var(--pip-figure); font-variant-numeric: tabular-nums; text-transform: uppercase; letter-spacing: 0.06em; }
.pip-scorecard__overall { display: flex; justify-content: center; margin-top: var(--space-3); }

/* === Calculator === */
.pip-calculator { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); padding: var(--space-4); border: 1px solid var(--pip-ink-30); }
@media (max-width: 767px) { .pip-calculator { grid-template-columns: 1fr; } }
.pip-calculator label { display: block; font-size: 14px; font-weight: 500; margin-bottom: var(--space-2); }
.pip-calculator input { width: 100%; padding: 12px 16px; border: 1.5px solid var(--pip-ink-30); border-radius: var(--radius-pill); font-family: var(--pip-figure); font-variant-numeric: tabular-nums; font-size: 16px; margin-top: 6px; }
.pip-calculator__result { font-size: 48px; font-weight: 500; color: var(--pip-gold); margin: 0 0 var(--space-2); }
.pip-calculator__result--secondary { font-size: 28px; }
.pip-calculator__optional { color: var(--pip-ink-60); font-weight: 400; font-size: 12px; }

/* === Documents === */
.pip-documents { display: grid; gap: var(--space-2); }
.pip-doc-card { display: flex; justify-content: space-between; align-items: center; padding: var(--space-3); border: 1px solid var(--pip-ink-30); border-radius: var(--radius-md); text-decoration: none; color: var(--pip-ink); transition: all 0.25s cubic-bezier(0.4,0,0.2,1); }
.pip-doc-card:hover { border-color: var(--pip-ink); transform: translateY(-2px); box-shadow: var(--pip-shadow); }
.pip-doc-card--locked { opacity: 0.75; }

/* === Dashboard === */
.pip-remove { position: absolute; bottom: 16px; right: 16px; z-index: 2; background: rgba(255,255,255,0.9); border: none; border-radius: var(--radius-pill); padding: 6px 14px; font-size: 12px; cursor: pointer; }
.pip-table { width: 100%; border-collapse: collapse; }
.pip-table th { text-align: left; font-family: var(--pip-figure); font-variant-numeric: tabular-nums; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--pip-ink-60); padding: 12px 16px; border-bottom: 1px solid var(--pip-ink-30); }
.pip-table td { padding: 14px 16px; border-bottom: 1px solid var(--pip-surface); font-size: 14px; }
.pip-alerts-form label { display: block; margin: var(--space-2) 0; font-size: 14px; font-weight: 500; }
.pip-alerts-form input[type="number"], .pip-alerts-form input[type="text"], .pip-alerts-form select { width: 100%; max-width: 360px; padding: 10px 16px; border: 1.5px solid var(--pip-ink-30); border-radius: var(--radius-pill); margin-top: 6px; display: block; }
.pip-alerts-form__types { display: flex; flex-wrap: wrap; gap: 8px; }
.pip-alerts-form__types .pip-filter-pill { user-select: none; }
.pip-alerts-form__types input { accent-color: var(--pip-gold); }
.pip-alerts-form__status { margin-left: var(--space-2); color: var(--pip-score-high); font-size: 14px; }

/* === ACF submission form skin === */
.acf-form .acf-label label { font-weight: 500; font-size: 14px; }
.acf-form .acf-input input[type="text"], .acf-form .acf-input input[type="number"], .acf-form .acf-input input[type="email"], .acf-form .acf-input input[type="url"], .acf-form .acf-input textarea, .acf-form .acf-input select { border: 1.5px solid var(--pip-ink-30); border-radius: var(--radius-sm); padding: 10px 14px; }

/* === WPForms skin (contact + enquiry) — bring default WPForms inputs onto the
   PIP system: rounded fields (radius-sm), Inter labels, pill submit button. === */
.wpforms-container .wpforms-field-label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: var(--pip-ink); }
.wpforms-container input[type="text"],
.wpforms-container input[type="email"],
.wpforms-container input[type="tel"],
.wpforms-container input[type="url"],
.wpforms-container input[type="number"],
.wpforms-container textarea,
.wpforms-container select {
  border: 1.5px solid var(--pip-ink-30) !important;
  border-radius: var(--radius-sm) !important;
  padding: 12px 14px !important;
  font-family: 'Inter', sans-serif;
}
.wpforms-container input:focus,
.wpforms-container textarea:focus,
.wpforms-container select:focus { border-color: var(--pip-ink) !important; outline: none; box-shadow: none; }
.wpforms-container button[type="submit"],
.wpforms-container .wpforms-submit {
  background: var(--pip-ink) !important;
  color: var(--pip-white) !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 500 !important;
  border: none !important;
  border-radius: var(--radius-pill) !important;
  padding: 14px 28px !important;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.wpforms-container button[type="submit"]:hover,
.wpforms-container .wpforms-submit:hover { background: #2a2a2a !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }

/* ===== APPEND VERBATIM SPEC BLOCKS BELOW THIS LINE (§2.6, §3.1–3.9) ===== */
.pip-glass-panel {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-md);
}

.pip-glass-panel--dark {
  background: rgba(13, 13, 13, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
}

/* For stat panels floating over hero image */
.pip-glass-stat {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
}
.pip-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pip-ink-60);
  margin-bottom: 16px;
}

.pip-eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pip-gold);
  flex-shrink: 0;
}
.btn-primary {
  background: var(--pip-ink);
  color: var(--pip-white);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
/* On dark surfaces the ink primary button disappears — promote it to the gold
   CTA so the conversion action stays visible (matches the Off-Market gate and
   the Pro tier's gold CTA on the membership table). */
.elementor-element-pipprocard .btn-primary,
.pip-glass-panel--dark .btn-primary,
.pip-gate-locked .btn-primary {
  background: var(--pip-gold);
  color: var(--pip-ink);
}
.elementor-element-pipprocard .btn-primary:hover,
.pip-glass-panel--dark .btn-primary:hover,
.pip-gate-locked .btn-primary:hover {
  background: #d4a838;
  color: var(--pip-ink);
}
.btn-secondary {
  background: transparent;
  color: var(--pip-ink);
  border: 1.5px solid var(--pip-ink);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
  background: var(--pip-ink);
  color: var(--pip-white);
}
.btn-ghost {
  background: rgba(255,255,255,0.15);
  color: var(--pip-white);
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}
.btn-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--pip-white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.btn-arrow:hover {
  background: var(--pip-ink);
  color: var(--pip-white);
  transform: scale(1.08);
}

.btn-arrow svg {
  width: 16px;
  height: 16px;
  transform: rotate(-45deg); /* northeast arrow */
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.badge--light {
  background: var(--pip-surface);
  color: var(--pip-ink);
}

.badge--dark {
  background: var(--pip-ink);
  color: var(--pip-white);
}

.badge--gold {
  background: var(--pip-gold-light);
  color: #8B6A1A;
}

.badge--location {
  background: rgba(255,255,255,0.85);
  color: var(--pip-ink);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.5);
}

/* Location pin icon prefix (SVG, not emoji) */
.badge--location::before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 5px;
  vertical-align: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D0D0D' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 21s7-5.5 7-11a7 7 0 0 0-14 0c0 5.5 7 11 7 11z'/%3E%3Ccircle cx='12' cy='10' r='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pip-property-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: var(--pip-shadow);
}

.pip-property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--pip-shadow-hover);
}

.pip-property-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pip-property-card:hover .pip-property-card__image {
  transform: scale(1.04);
}

.pip-property-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 20px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}

.pip-property-card__controls {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.pip-property-card__number {
  font-family: var(--pip-figure); font-variant-numeric: tabular-nums;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 4px;
}

.pip-property-card__name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.3;
  margin: 0;
}

.pip-property-card__yield {
  font-family: var(--pip-figure); font-variant-numeric: tabular-nums;
  font-size: 14px;
  color: var(--pip-gold);
  margin-top: 4px;
}
.pip-score-ring {
  position: relative;
  width: 64px;
  height: 64px;
}

.pip-score-ring__svg {
  transform: rotate(-90deg);
  width: 100%;
  height: 100%;
}

.pip-score-ring__track {
  fill: none;
  stroke: var(--pip-ink-30);
  stroke-width: 3;
}

.pip-score-ring__fill {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 125.6; /* 2π × r = 2π × 20 ≈ 125.6 */
  stroke-dashoffset: 125.6; /* starts empty */
  transition: stroke-dashoffset 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Score-based colour — set via JS on scroll trigger */
.pip-score-ring[data-level="high"] .pip-score-ring__fill { stroke: var(--pip-score-high); }
.pip-score-ring[data-level="mid"] .pip-score-ring__fill { stroke: var(--pip-score-mid); }
.pip-score-ring[data-level="low"] .pip-score-ring__fill { stroke: var(--pip-score-low); }

.pip-score-ring__value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--pip-figure); font-variant-numeric: tabular-nums;
  font-size: 13px;
  font-weight: 500;
  color: var(--pip-ink);
}
.pip-data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0;
  background: var(--pip-white); /* white base — no grey void on a partial last row */
  border: 1px solid var(--pip-ink-30);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
/* Dividers drawn per-cell instead of via a grey grid background, so partially
   filled rows (cell count not a multiple of the column count, e.g. gated grids)
   never expose a grey empty block. */
.pip-data-cell {
  box-shadow: inset -1px 0 0 var(--pip-ink-30), inset 0 -1px 0 var(--pip-ink-30);
}

.pip-data-cell {
  background: var(--pip-white);
  padding: 12px 16px;
}

.pip-data-cell__label {
  font-family: var(--pip-figure); font-variant-numeric: tabular-nums;
  font-size: 10px;
  font-weight: 400;
  color: var(--pip-ink-60);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.pip-data-cell__value {
  font-family: var(--pip-figure); font-variant-numeric: tabular-nums;
  font-size: 16px;
  font-weight: 500;
  color: var(--pip-ink);
}
.pip-filter-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 16px 0;
}

.pip-filter-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--pip-ink);
  background: var(--pip-white);
  border: 1.5px solid var(--pip-ink-30);
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s ease;
}

.pip-filter-pill:hover, .pip-filter-pill.active {
  border-color: var(--pip-ink);
  background: var(--pip-ink);
  color: var(--pip-white);
}

.pip-filter-pill svg {
  width: 14px;
  height: 14px;
}

/* Archive filter bar: spec §3.7 calls for a compact HORIZONTAL pill row, not
   full-width stacked rows. Form controls (select/input) default to stretching
   inside the flex bar, so give them an auto/intrinsic basis and let them wrap.
   Also suppress the dark-fill hover for inputs/selects so typed text stays
   legible (the dark fill is for clickable button-pills only). */
.pip-filter-bar select.pip-filter-pill,
.pip-filter-bar input.pip-filter-pill {
  flex: 0 1 auto;
  width: auto;
  min-width: 150px;
  background: var(--pip-white);
  color: var(--pip-ink);
  -webkit-appearance: none;
  appearance: none;
  /* Force the pill shape — the theme overrides bare inputs to a 4px rectangle,
     leaving inputs square while the selects/button stayed pill. Keep them all
     uniformly pill-shaped to match the rest of the site's form controls. */
  border-radius: var(--radius-pill) !important;
}
.pip-filter-bar select.pip-filter-pill {
  line-height: 1.2;
  padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%230D0D0D' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.pip-filter-bar input.pip-filter-pill:hover,
.pip-filter-bar select.pip-filter-pill:hover {
  background-color: var(--pip-white);
  color: var(--pip-ink);
  border-color: var(--pip-ink);
}
.pip-filter-bar input.pip-filter-pill::placeholder { color: var(--pip-ink-60); }
.pip-tab-nav {
  position: sticky;
  bottom: 0;
  background: var(--pip-dark);
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  z-index: 100;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.pip-tab-nav__item {
  flex-shrink: 0;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  padding: 18px 28px;
  cursor: pointer;
  transition: color 0.2s ease;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}

.pip-tab-nav__item.active {
  color: var(--pip-white);
  border-bottom-color: var(--pip-gold);
}

.pip-tab-nav__number {
  font-family: var(--pip-figure); font-variant-numeric: tabular-nums;
  font-size: 11px;
  color: var(--pip-gold);
  margin-right: 8px;
}
.pip-insight-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4; /* or 4/5 for taller variant */
}

.pip-insight-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.pip-insight-card:hover .pip-insight-card__image {
  transform: scale(1.04);
}

.pip-insight-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pip-insight-card__date {
  font-family: var(--pip-figure); font-variant-numeric: tabular-nums;
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.pip-insight-card__title {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--pip-white);
  line-height: 1.35;
  margin: 0;
}

.pip-insight-card__arrow {
  position: absolute;
  top: 16px;
  right: 16px;
}

/* Insight archive grid + card-as-link variant (design spec §3.9) */
.pip-insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
@media (max-width: 1024px) { .pip-insight-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pip-insight-grid { grid-template-columns: 1fr; } }
a.pip-insight-card { display: block; text-decoration: none; }
.pip-insight-card__image {
  background-size: cover;
  background-position: center;
  background-color: var(--pip-surface);
}
.pip-insight-card__title { transition: none; }
.pip-insight-card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(13,13,13,0.18); }
.pip-insight-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.pip-insight-filters { margin-bottom: 8px; }
.pip-dash-layout { display: flex; gap: 32px; align-items: flex-start; }
.pip-dash-nav { flex: 0 0 240px; position: sticky; top: 96px; }
.pip-dash-nav ul { list-style: none; margin: 0; padding: 16px; display: flex; flex-direction: column; gap: 6px; background: var(--pip-surface); border-radius: var(--radius-md); }
.pip-dash-nav a {
  display: block; padding: 10px 18px; border-radius: var(--radius-pill);
  font-family: 'Inter', sans-serif; font-size: 15px; color: var(--pip-ink);
  text-decoration: none; transition: background 0.2s ease, color 0.2s ease;
}
.pip-dash-nav a:hover { background: rgba(13,13,13,0.06); }
.pip-dash-nav a.active { background: var(--pip-ink); color: var(--pip-white); }
.pip-dash-main { flex: 1 1 auto; min-width: 0; }
.pip-dash-main .pip-surface, .pip-dash-panel {
  background: #FFFFFF; border: 1px solid rgba(13,13,13,0.08);
  border-radius: var(--radius-md); padding: 32px;
}
@media (max-width: 900px) {
  .pip-dash-layout { flex-direction: column; }
  .pip-dash-nav { flex: 1 1 auto; width: 100%; position: static; }
  .pip-dash-nav ul { flex-direction: row; flex-wrap: nowrap; overflow-x: auto; padding: 10px; gap: 8px; }
  .pip-dash-nav a { white-space: nowrap; }
}

/* === Full-bleed sections on Elementor-built pages ===
   Release Astra's .ast-container width cap (max-width:1240 + auto side margins) so
   e-con-full sections (hero, off-market) span the full viewport and e-con-boxed
   section backgrounds reach the edges, while their inner .e-con-inner keeps content
   boxed at 1200px. Scoped to Elementor pages so text pages (login/account) stay boxed. */
body.elementor-page #content .ast-container,
body.page-template-elementor_header_footer #content .ast-container {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* === Breadcrumbs === */
.pip-breadcrumbs{background:var(--pip-surface);border-bottom:1px solid rgba(13,13,13,0.06);}
.pip-breadcrumbs__inner{max-width:1200px;margin:0 auto;min-height:54px;display:flex;align-items:center;flex-wrap:wrap;gap:8px;padding:8px 24px 8px 184px;font-family:'Inter',sans-serif;font-size:13px;}
.pip-crumb{color:var(--pip-ink-60);text-decoration:none;transition:color .2s ease;white-space:nowrap;}
.pip-crumb:hover{color:var(--pip-gold);}
.pip-crumb--current{color:var(--pip-ink);font-weight:500;}
.pip-crumb__sep{color:var(--pip-ink-30);font-size:14px;}
@media(max-width:1024px){.pip-breadcrumbs__inner{padding-left:118px;min-height:48px;}}

/* ===================== Single property (sticky-sidebar) ===================== */
.pip-sp{max-width:1200px;margin:0 auto;padding:30px 24px 46px;}
.pip-sp__titlebar{margin-bottom:28px;}
.pip-sp__main{display:flex;align-items:flex-start;gap:48px;}
.pip-sp__content{flex:1 1 auto;min-width:0;}
.pip-sp__rail{flex:0 0 360px;width:360px;position:sticky;top:96px;}
.pip-rail__card{border:1px solid var(--pip-ink-30);border-radius:var(--radius-lg);padding:24px;background:#fff;box-shadow:var(--pip-shadow);}
.pip-rail__card .pip-data-grid{border:0;}
.pip-rail__score{margin-top:22px;padding-top:22px;border-top:1px solid var(--pip-surface);}
.pip-rail__score .pip-scorecard{border:0;padding:0;background:transparent;}
.pip-rail__cta{display:flex;flex-direction:column;gap:10px;margin-top:22px;}
.pip-rail__cta .btn-primary,.pip-rail__cta .btn-secondary{text-align:center;justify-content:center;width:100%;text-decoration:none;}
.pip-sp__section{padding:34px 0;border-top:1px solid var(--pip-ink-30);}
.pip-sp__section:first-child{border-top:0;padding-top:0;}
.pip-sp__h2{font-family:'Syne',sans-serif;font-size:26px;font-weight:700;color:var(--pip-ink);margin:0 0 18px;}
.pip-sp__gallery{margin-bottom:4px;}
.pip-sp__enquire{margin-top:8px;padding:36px;background:var(--pip-surface);border-radius:var(--radius-lg);}
.pip-sp__enquire-sub{color:var(--pip-ink-60);margin:0 0 24px;max-width:60ch;}

/* Title block */
.pip-prop-meta__index{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:14px;color:var(--pip-ink-30);margin:0 0 10px;}
.pip-prop-meta__badges{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:14px;}
.pip-prop-meta__company{color:var(--pip-ink-60);font-size:14px;margin:0 0 6px;}
.pip-prop-meta__title{font-family:'Syne',sans-serif;font-size:46px;font-weight:700;line-height:1.08;color:var(--pip-ink);margin:0;}
@media(max-width:767px){.pip-prop-meta__title{font-size:32px;}}

/* Gallery */
.pip-prop-gallery__main{width:100%;border-radius:var(--radius-lg);display:block;aspect-ratio:16/10;object-fit:cover;}
.pip-prop-gallery--empty{aspect-ratio:16/10;background:var(--pip-surface);border-radius:var(--radius-lg);}
.pip-prop-gallery__thumbs{display:flex;gap:10px;margin-top:10px;flex-wrap:wrap;}
.pip-prop-gallery__thumb{width:88px;height:64px;object-fit:cover;border-radius:8px;}

/* Overview / case / financials body */
.pip-prop-overview{color:var(--pip-ink);font-size:16px;line-height:1.7;}
.pip-prop-highlights{margin:16px 0 0;padding:0;list-style:none;display:grid;gap:10px;}
.pip-prop-highlights li{position:relative;padding-left:26px;color:var(--pip-ink);line-height:1.5;}
.pip-prop-highlights li::before{content:'';position:absolute;left:0;top:8px;width:8px;height:8px;border-radius:50%;background:var(--pip-gold);}
.pip-prop-case__block{margin-top:22px;}
.pip-prop-case__block h3{font-size:16px;font-weight:600;margin:0 0 8px;color:var(--pip-ink);}
.pip-prop-video{margin-top:4px;border-radius:var(--radius-lg);overflow:hidden;}

/* Scorecard layout (rail) */
.pip-scorecard__overall{display:flex;justify-content:center;margin-bottom:18px;}
.pip-scorecard__rings{display:flex;flex-wrap:wrap;justify-content:center;gap:14px;}
/* Scorecard locked (intentional) */
.pip-scorecard--locked{text-align:center;padding:6px 0;}
.pip-scorecard__lockring{width:64px;height:64px;border-radius:50%;border:2px solid var(--pip-ink-30);display:flex;align-items:center;justify-content:center;margin:0 auto 14px;color:var(--pip-gold);}
.pip-scorecard__locktitle{font-family:'Inter',sans-serif;font-weight:600;font-size:15px;margin:0 0 10px;color:var(--pip-ink);}
.pip-scorecard__factors{display:flex;flex-wrap:wrap;justify-content:center;gap:6px;margin-bottom:12px;}
.pip-scorecard__factor{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:10px;text-transform:uppercase;letter-spacing:.05em;color:var(--pip-ink-60);background:var(--pip-surface);padding:4px 9px;border-radius:999px;}
.pip-scorecard__locksub{font-size:12px;color:var(--pip-ink-60);line-height:1.5;margin:0 0 18px;}
.pip-scorecard__cta{display:inline-block;text-decoration:none;}

/* Mobile: rail drops below the gallery, no longer sticky */
@media(max-width:1024px){
  .pip-sp__main{flex-direction:column;}
  .pip-sp__rail{position:static;width:100%;flex-basis:auto;}
}

/* === Full-bleed container on CPT singles (property/insight) ===
   These render via Astra's boxed "separate container" single layout (capped at the
   content width), which the elementor-page override above doesn't match. Release the
   cap and drop the boxed card so the page is full-width like the rest of the site;
   the .pip-sp content stays boxed/padded so it never touches the edges. */
body.single-pip_property #content .ast-container,
body.single-pip_insight #content .ast-container{max-width:100% !important;padding-left:0 !important;padding-right:0 !important;}
body.single-pip_property #primary,
body.single-pip_insight #primary{max-width:100% !important;margin:0 !important;padding:0 !important;}
body.single-pip_property .ast-article-single,
body.single-pip_insight .ast-article-single{padding:0 !important;border:0 !important;background:transparent !important;box-shadow:none !important;}

/* === Property gallery (interactive) === */
.pip-prop-gallery__stage{display:block;width:100%;padding:0;border:0;background:none;cursor:zoom-in;position:relative;border-radius:var(--radius-lg);overflow:hidden;}
.pip-prop-gallery__main{width:100%;aspect-ratio:16/10;object-fit:cover;display:block;transition:transform .4s ease;}
.pip-prop-gallery__stage:hover .pip-prop-gallery__main{transform:scale(1.03);}
.pip-prop-gallery__count{position:absolute;left:16px;bottom:16px;background:rgba(13,13,13,0.7);color:#fff;font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:12px;padding:5px 11px;border-radius:999px;backdrop-filter:blur(6px);}
.pip-prop-gallery__zoom{position:absolute;right:16px;bottom:16px;width:38px;height:38px;display:flex;align-items:center;justify-content:center;background:rgba(255,255,255,0.92);color:var(--pip-ink);border-radius:50%;box-shadow:0 2px 8px rgba(0,0,0,0.15);}
.pip-prop-gallery__thumbs{display:flex;gap:10px;margin-top:10px;flex-wrap:wrap;}
.pip-prop-gallery__thumb{width:92px;height:66px;padding:0;border:2px solid transparent;border-radius:10px;overflow:hidden;cursor:pointer;background:none;transition:border-color .2s ease;}
.pip-prop-gallery__thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.pip-prop-gallery__thumb:hover{border-color:var(--pip-ink-30);}
.pip-prop-gallery__thumb.is-active{border-color:var(--pip-gold);}

/* Lightbox */
.pip-lightbox{position:fixed;inset:0;z-index:100000;background:rgba(10,10,10,0.92);-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);display:flex;align-items:center;justify-content:center;animation:pipLbIn .2s ease;}
@keyframes pipLbIn{from{opacity:0}to{opacity:1}}
.pip-lightbox__img{max-width:88vw;max-height:86vh;object-fit:contain;border-radius:8px;box-shadow:0 20px 60px rgba(0,0,0,0.5);}
.pip-lightbox__close{position:absolute;top:24px;right:28px;background:none;border:0;color:#fff;font-size:40px;line-height:1;cursor:pointer;opacity:.8;}
.pip-lightbox__close:hover{opacity:1;}
.pip-lightbox__nav{position:absolute;top:50%;transform:translateY(-50%);width:52px;height:52px;border-radius:50%;border:0;background:rgba(255,255,255,0.12);color:#fff;font-size:30px;line-height:1;cursor:pointer;transition:background .2s;}
.pip-lightbox__nav:hover{background:rgba(255,255,255,0.25);}
.pip-lightbox__nav--prev{left:28px;}
.pip-lightbox__nav--next{right:28px;}
.pip-lightbox__count{position:absolute;bottom:28px;left:50%;transform:translateX(-50%);color:rgba(255,255,255,0.85);font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:13px;}
@media(max-width:600px){.pip-lightbox__nav{width:42px;height:42px;font-size:24px;}.pip-lightbox__nav--prev{left:10px;}.pip-lightbox__nav--next{right:10px;}}

/* === Key Metrics tiles === */
.pip-metrics{display:grid;grid-template-columns:repeat(auto-fill,minmax(150px,1fr));gap:1px;background:var(--pip-ink-30);border:1px solid var(--pip-ink-30);border-radius:var(--radius-md);overflow:hidden;}
.pip-metric{background:#fff;padding:18px 20px;}
.pip-metric__val{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:22px;font-weight:500;color:var(--pip-ink);margin:0 0 4px;line-height:1.1;}
.pip-metric__label{font-family:'Inter',sans-serif;font-size:11px;text-transform:uppercase;letter-spacing:.06em;color:var(--pip-ink-60);margin:0;}

/* === Financials grouped tables === */
.pip-fin{margin-bottom:28px;}
.pip-fin__title{font-family:'Inter',sans-serif;font-size:13px;font-weight:600;text-transform:uppercase;letter-spacing:.06em;color:var(--pip-gold);margin:0 0 10px;}
.pip-fin__list{margin:0;display:grid;gap:0;}
.pip-fin__row{display:flex;justify-content:space-between;gap:16px;padding:11px 0;border-bottom:1px solid var(--pip-surface);}
.pip-fin__row dt{margin:0;color:var(--pip-ink-60);font-size:14px;}
.pip-fin__row dd{margin:0;font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:14px;color:var(--pip-ink);text-align:right;}

/* === Membership: bands, benefits, steps, FAQ, CTA === */
.pip-band{max-width:1100px;margin:0 auto;text-align:center;}
.pip-band--narrow{max-width:800px;}
.pip-band__h2{font-family:'Syne',sans-serif;font-size:38px;font-weight:700;color:var(--pip-ink);margin:8px 0 44px;line-height:1.12;}
@media(max-width:767px){.pip-band__h2{font-size:28px;margin-bottom:32px;}}

.pip-benefits{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;text-align:left;}
@media(max-width:900px){.pip-benefits{grid-template-columns:1fr 1fr;}}
@media(max-width:600px){.pip-benefits{grid-template-columns:1fr;}}
.pip-benefit{padding:26px;border:1px solid var(--pip-ink-30);border-radius:var(--radius-md);transition:all .25s cubic-bezier(.4,0,.2,1);}
.pip-benefit:hover{border-color:var(--pip-ink);transform:translateY(-4px);box-shadow:var(--pip-shadow);}
.pip-benefit__ico{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:50%;background:var(--pip-gold-light);color:#8B6A1A;margin-bottom:16px;}
.pip-benefit__title{font-family:'Inter',sans-serif;font-size:17px;font-weight:600;color:var(--pip-ink);margin:0 0 6px;}
.pip-benefit__desc{font-size:14px;line-height:1.6;color:var(--pip-ink-60);margin:0;}

.pip-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;text-align:left;}
@media(max-width:767px){.pip-steps{grid-template-columns:1fr;gap:24px;}}
.pip-step{position:relative;padding-top:8px;}
.pip-step__n{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:34px;color:var(--pip-gold);display:block;margin-bottom:10px;}
.pip-step__title{font-family:'Inter',sans-serif;font-size:18px;font-weight:600;color:var(--pip-ink);margin:0 0 8px;}
.pip-step__desc{font-size:14px;line-height:1.65;color:var(--pip-ink-60);margin:0;}

.pip-faq{max-width:780px;margin:0 auto;text-align:left;}
.pip-faq__item{border-bottom:1px solid var(--pip-ink-30);}
.pip-faq__q{display:flex;justify-content:space-between;align-items:center;gap:16px;cursor:pointer;padding:22px 4px;font-family:'Inter',sans-serif;font-size:17px;font-weight:600;color:var(--pip-ink);list-style:none;}
.pip-faq__q::-webkit-details-marker{display:none;}
.pip-faq__icon{position:relative;flex-shrink:0;width:18px;height:18px;}
.pip-faq__icon::before,.pip-faq__icon::after{content:'';position:absolute;background:var(--pip-gold);transition:transform .25s ease,opacity .25s ease;}
.pip-faq__icon::before{top:8px;left:0;width:18px;height:2px;}
.pip-faq__icon::after{left:8px;top:0;width:2px;height:18px;}
.pip-faq__item[open] .pip-faq__icon::after{transform:rotate(90deg);opacity:0;}
.pip-faq__a{padding:0 4px 22px;color:var(--pip-ink-60);font-size:15px;line-height:1.7;}
.pip-faq__a p{margin:0;}

.pip-cta-band{max-width:760px;margin:0 auto;text-align:center;}
.pip-eyebrow--light{color:rgba(255,255,255,0.65);}
.pip-cta-band__h2{font-family:'Syne',sans-serif;font-size:36px;font-weight:700;color:#fff;margin:8px 0 12px;line-height:1.12;}
@media(max-width:767px){.pip-cta-band__h2{font-size:26px;}}
.pip-cta-band__sub{color:rgba(255,255,255,0.7);font-size:16px;margin:0 0 28px;}
.pip-cta-band__btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;}
.pip-cta-band__gold{background:var(--pip-gold) !important;color:var(--pip-ink) !important;}
.pip-cta-band__gold:hover{background:#d4a838 !important;}

/* === Property card: keep top controls on one line === */
.pip-property-card__controls{flex-wrap:nowrap;gap:8px;}
.pip-property-card__controls-right{display:flex;align-items:center;gap:8px;flex:0 0 auto;}
.badge--location{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:64%;}
.badge--gold{white-space:nowrap;}
.pip-property-card__flag{display:inline-flex;align-self:flex-start;margin-bottom:10px;}

/* === Generic full-width page header + boxed wrap (off-market, featured, etc.) === */
.pip-page-wrap{max-width:1200px;margin:0 auto;padding:40px 24px 46px;}
.pip-page-head{margin-bottom:36px;}
.pip-page-head__title{font-family:'Syne',sans-serif;font-size:48px;font-weight:700;line-height:1.08;color:var(--pip-ink);margin:6px 0 14px;}
@media(max-width:767px){.pip-page-head__title{font-size:32px;}}
.pip-page-head__sub{font-size:17px;line-height:1.6;color:var(--pip-ink-60);max-width:60ch;margin:0;}

/* === Property quick-view popup === */
.pip-qv-overlay{position:fixed;inset:0;z-index:100000;display:flex;align-items:center;justify-content:center;padding:24px;background:rgba(0,0,0,0.55);-webkit-backdrop-filter:blur(6px);backdrop-filter:blur(6px);opacity:0;transition:opacity .3s ease;}
.pip-qv-overlay.is-open{opacity:1;}
.pip-qv{position:relative;display:flex;width:min(900px,94vw);max-height:88vh;background:#fff;border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 30px 80px rgba(0,0,0,0.35);transform:scale(.96);transition:transform .3s cubic-bezier(.4,0,.2,1);}
.pip-qv-overlay.is-open .pip-qv{transform:scale(1);}
.pip-qv--loading{align-items:center;justify-content:center;min-height:240px;padding:60px;color:var(--pip-ink-60);font-family:'Inter',sans-serif;}
.pip-qv__media{flex:0 0 44%;background:var(--pip-surface) center/cover no-repeat;position:relative;min-height:340px;}
.pip-qv__score{position:absolute;top:16px;left:16px;background:#fff;border-radius:50%;padding:4px;box-shadow:0 2px 10px rgba(0,0,0,0.15);}
.pip-qv__body{flex:1 1 auto;display:flex;flex-direction:column;padding:34px;overflow:auto;}
.pip-qv__badges{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:16px;}
.pip-qv__title{font-family:'Syne',sans-serif;font-size:26px;font-weight:700;line-height:1.15;color:var(--pip-ink);margin:0 0 10px;}
.pip-qv__desc{font-size:15px;line-height:1.65;color:var(--pip-ink-60);margin:0 0 20px;}
.pip-qv__data{display:flex;gap:28px;flex-wrap:wrap;padding:18px 0;border-top:1px solid var(--pip-surface);border-bottom:1px solid var(--pip-surface);margin-bottom:22px;}
.pip-qv__cell{display:flex;flex-direction:column;gap:4px;}
.pip-qv__cell-l{font-family:'Inter',sans-serif;font-size:11px;text-transform:uppercase;letter-spacing:.06em;color:var(--pip-ink-60);}
.pip-qv__cell-v{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:18px;font-weight:500;color:var(--pip-ink);}
.pip-qv__cta{display:flex;gap:10px;flex-wrap:wrap;margin-top:auto;}
.pip-qv__cta .btn-primary,.pip-qv__cta .btn-secondary{text-decoration:none;}
.pip-qv__close{position:absolute;top:14px;right:14px;z-index:3;display:flex!important;align-items:center;justify-content:center;width:36px!important;height:36px!important;min-width:0!important;padding:0!important;border:0;border-radius:50%;background:rgba(255,255,255,0.92);color:var(--pip-ink);font-size:22px;line-height:1;box-sizing:border-box;cursor:pointer;box-shadow:0 2px 8px rgba(0,0,0,0.15);}
.pip-qv__close:hover,.pip-qv__close:focus,.pip-qv__close:active{background:#fff!important;color:var(--pip-ink)!important;}
@media(max-width:680px){.pip-qv{flex-direction:column;max-height:90vh;}.pip-qv__media{flex-basis:auto;min-height:200px;}.pip-qv__body{padding:24px;}}

/* === Quick-view v2: tabbed mini-experience + peeking carousel === */
.pip-qv-frame{position:relative;display:flex;}
.pip-qv-stage{position:relative;z-index:2;transition:opacity .2s ease;width:min(900px,94vw);}
.pip-qv-peek{position:absolute;z-index:1;top:30px;bottom:30px;right:-58px;width:96px;border-radius:0 var(--radius-lg) var(--radius-lg) 0;background:var(--pip-surface) center/cover no-repeat;box-shadow:0 24px 60px rgba(0,0,0,0.3);opacity:.55;}
.pip-qv-nav{position:absolute;top:50%;transform:translateY(-50%);z-index:5;display:flex!important;align-items:center;justify-content:center;width:48px!important;height:48px!important;min-width:0!important;padding:0!important;border-radius:50%;border:0;background:rgba(255,255,255,0.92);color:var(--pip-ink);font-size:24px;line-height:1;box-sizing:border-box;cursor:pointer;box-shadow:0 6px 18px rgba(0,0,0,0.22);transition:background .2s,transform .2s;}
.pip-qv-nav:hover,.pip-qv-nav:focus,.pip-qv-nav:active{background:#fff!important;color:var(--pip-ink)!important;}
.pip-qv-nav--prev{left:28px;}
.pip-qv-nav--next{right:28px;}
.pip-qv__media{position:relative;overflow:hidden;}
.pip-qv__main{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;}
.pip-qv__body{display:flex;flex-direction:column;}
.pip-qv__head{margin-bottom:14px;}
.pip-qv__dev{font-size:13px;color:var(--pip-ink-60);margin:8px 0 0;}
.pip-qv__tabs{display:flex;gap:24px;border-bottom:1px solid var(--pip-ink-30);margin-bottom:18px;}
.pip-qv__tab{appearance:none;-webkit-appearance:none;background:none!important;border:0;border-radius:0!important;border-bottom:2px solid transparent;padding:0 0 10px!important;min-width:0!important;box-shadow:none!important;font-family:'Inter',sans-serif;font-size:14px;font-weight:500;color:var(--pip-ink-60);cursor:pointer;transition:color .2s,border-color .2s;}
.pip-qv__tab:hover,.pip-qv__tab:focus,.pip-qv__tab:focus-visible,.pip-qv__tab:active{background:none!important;box-shadow:none!important;outline:none;color:var(--pip-ink)!important;}
.pip-qv__tab.is-active{color:var(--pip-ink)!important;border-bottom-color:var(--pip-gold);background:none!important;}
.pip-qv__panels{flex:1 1 auto;min-height:150px;margin-bottom:22px;}
.pip-qv__panel{display:none;}
.pip-qv__panel.is-active{display:block;}
.pip-qv__thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;}
.pip-qv__thumb{padding:0;border:2px solid transparent;border-radius:8px;overflow:hidden;cursor:pointer;background:none;aspect-ratio:4/3;}
.pip-qv__thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.pip-qv__thumb.is-active{border-color:var(--pip-gold);}
.pip-qv__lock{text-align:center;padding:24px;background:var(--pip-surface);border-radius:var(--radius-md);}
.pip-qv__lock p{margin:0 0 14px;color:var(--pip-ink-60);font-size:14px;}
.pip-qv__lock .btn-primary{display:inline-block;text-decoration:none;}
.pip-qv__muted{color:var(--pip-ink-60);font-size:14px;margin:0;}
@media(max-width:680px){.pip-qv-peek{display:none;}.pip-qv-nav--prev{left:8px;}.pip-qv-nav--next{right:8px;}.pip-qv-stage{width:94vw;}}

/* ── Homepage insights carousel (category-tabbed) ─────────────────── */
.pip-insx{display:flex;flex-direction:column;}
.pip-insx__head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:24px;}
.pip-insx__title{font-family:'Syne',sans-serif;font-size:40px;font-weight:700;line-height:1.15;color:var(--pip-ink);margin:0;}
.pip-insx__nav{display:flex;gap:10px;flex-shrink:0;}
.pip-insx__arrow{width:48px;height:48px;border-radius:9999px;border:1px solid #ECECEC;background:#fff;color:var(--pip-ink);display:inline-flex;align-items:center;justify-content:center;cursor:pointer;transition:all .25s cubic-bezier(.4,0,.2,1);}
.pip-insx__arrow:hover{background:var(--pip-ink);color:#fff;transform:translateY(-2px);box-shadow:0 8px 20px rgba(0,0,0,.14);}
.pip-insx__arrow:disabled{opacity:.32;cursor:default;transform:none;box-shadow:none;background:#fff;color:var(--pip-ink);}
.pip-insx__tabs{display:flex;gap:10px;overflow-x:auto;padding-bottom:6px;margin-bottom:28px;scrollbar-width:none;}
.pip-insx__tabs::-webkit-scrollbar{display:none;}
.pip-insx__tab{flex-shrink:0;display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid #ECECEC;color:var(--pip-ink);font-family:'Inter',sans-serif;font-size:14px;font-weight:500;padding:10px 18px;border-radius:9999px;cursor:pointer;transition:all .25s cubic-bezier(.4,0,.2,1);}
.pip-insx__tab:hover{border-color:var(--pip-ink);}
.pip-insx__tab.is-active{background:var(--pip-ink);color:#fff;border-color:var(--pip-ink);}
.pip-insx__count{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:11px;line-height:1;padding:3px 7px;border-radius:9999px;background:rgba(13,13,13,.06);color:var(--pip-ink-60);}
.pip-insx__tab.is-active .pip-insx__count{background:rgba(255,255,255,.18);color:#fff;}
.pip-insx__track{display:flex;gap:24px;overflow-x:auto;scroll-behavior:smooth;scroll-snap-type:x mandatory;padding-bottom:8px;margin:0 -24px;padding-left:24px;padding-right:24px;scrollbar-width:none;}
.pip-insx__track::-webkit-scrollbar{display:none;}
.pip-insx__track .pip-insight-card{flex:0 0 clamp(260px,30%,340px);scroll-snap-align:start;aspect-ratio:4/5;}
.pip-insx__track .pip-insight-card.is-hidden{display:none;}
.pip-insx__foot{margin-top:28px;}
.pip-insx__foot .btn-secondary{text-decoration:none;display:inline-flex;align-items:center;}
@media(max-width:767px){
  .pip-insx__title{font-size:26px;}
  .pip-insx__nav{display:none;}
  .pip-insx__head{flex-direction:column;align-items:flex-start;}
  .pip-insx__track .pip-insight-card{flex:0 0 78%;}
}

/* ── Branded auth: login / register / account ─────────────────────── */
.pip-auth{display:grid;grid-template-columns:0.9fr 1.1fr;gap:0;max-width:1040px;margin:48px auto;background:#fff;border:1px solid #ECECEC;border-radius:var(--radius-lg);overflow:hidden;box-shadow:0 24px 60px rgba(13,13,13,.10);}
.pip-auth--single{grid-template-columns:1fr;max-width:560px;}
.pip-auth__aside{position:relative;background:linear-gradient(160deg,#15171c 0%,#0D0D0D 60%,#1c1407 100%);color:#fff;padding:40px 36px;display:flex;flex-direction:column;justify-content:space-between;min-height:520px;}
.pip-auth__brand{font-family:'Syne',sans-serif;font-weight:700;font-size:14px;letter-spacing:.02em;color:#fff;}
.pip-auth__aside-body{margin:auto 0;}
.pip-auth__eyebrow{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:var(--pip-gold);margin:0 0 10px;}
.pip-auth__lead{font-family:'Syne',sans-serif;font-size:30px;font-weight:700;line-height:1.15;margin:0 0 24px;color:#fff;}
.pip-auth__points{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:14px;}
.pip-auth__points li{position:relative;padding-left:30px;font-family:'Inter',sans-serif;font-size:15px;line-height:1.5;color:rgba(255,255,255,.82);}
.pip-auth__points li::before{content:'';position:absolute;left:0;top:2px;width:18px;height:18px;border-radius:50%;background:var(--pip-gold);}
.pip-auth__points li::after{content:'';position:absolute;left:6px;top:7px;width:5px;height:8px;border:solid #0D0D0D;border-width:0 2px 2px 0;transform:rotate(45deg);}
.pip-auth__aside-foot{font-family:'Inter',sans-serif;font-size:12.5px;color:rgba(255,255,255,.5);margin:0;line-height:1.5;}
.pip-auth__main{padding:48px 44px;display:flex;flex-direction:column;}
.pip-auth__title{font-family:'Syne',sans-serif;font-size:30px;font-weight:700;line-height:1.15;color:var(--pip-ink);margin:6px 0 6px;}
.pip-auth__sub{font-family:'Inter',sans-serif;font-size:15px;color:var(--pip-ink-60);margin:0 0 24px;}
.pip-auth__form{display:flex;flex-direction:column;gap:18px;margin-top:24px;}
.pip-auth__field{display:flex;flex-direction:column;gap:7px;}
.pip-auth__field>span{font-family:'Inter',sans-serif;font-size:13px;font-weight:600;color:var(--pip-ink);}
.pip-auth__input{width:100%;box-sizing:border-box;padding:13px 16px;border:1.5px solid var(--pip-ink-30);border-radius:var(--radius-pill);font-family:'Inter',sans-serif;font-size:15px;color:var(--pip-ink);background:#fff;transition:border-color .2s,box-shadow .2s;}
.pip-auth__input:focus{outline:none;border-color:var(--pip-ink);box-shadow:0 0 0 3px rgba(196,153,42,.18);}
.pip-auth__hint{font-family:'Inter',sans-serif;font-size:12px;color:var(--pip-ink-60);}
.pip-auth__row{display:flex;justify-content:space-between;align-items:center;gap:12px;flex-wrap:wrap;margin-top:-4px;}
.pip-auth__check{display:inline-flex;align-items:center;gap:8px;font-family:'Inter',sans-serif;font-size:13px;color:var(--pip-ink-60);cursor:pointer;}
.pip-auth__check input{accent-color:var(--pip-gold);width:16px;height:16px;}
.pip-auth__link{font-family:'Inter',sans-serif;font-size:13px;color:var(--pip-ink);text-decoration:none;border-bottom:1px solid var(--pip-ink-30);}
.pip-auth__link:hover{border-color:var(--pip-ink);}
.pip-auth__submit{width:100%;justify-content:center;text-align:center;margin-top:4px;border:0;cursor:pointer;font-size:15px;}
.pip-auth__alt{font-family:'Inter',sans-serif;font-size:14px;color:var(--pip-ink-60);margin:24px 0 0;}
.pip-auth__alt a{color:var(--pip-ink);font-weight:600;text-decoration:none;border-bottom:1px solid var(--pip-gold);}
.pip-auth__fine{font-family:'Inter',sans-serif;font-size:12px;color:var(--pip-ink-60);margin:0;line-height:1.5;}
.pip-auth__alert{background:#FCEEEE;border:1px solid #E6B8B8;color:#9A2A2A;font-family:'Inter',sans-serif;font-size:14px;padding:12px 16px;border-radius:var(--radius-sm);margin-bottom:4px;}
.pip-auth__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px;}
.pip-auth__actions .btn-primary,.pip-auth__actions .btn-secondary{text-decoration:none;}
.pip-auth__welcome{background:var(--pip-gold-light);border:1px solid #E6D6A6;color:#6B5418;font-family:'Inter',sans-serif;font-size:14px;padding:14px 18px;border-radius:var(--radius-sm);margin-bottom:24px;}
/* Account overview */
.pip-account{max-width:920px;margin:48px auto;}
.pip-account__head{display:flex;justify-content:space-between;align-items:flex-start;gap:24px;margin-bottom:28px;}
.pip-account__head .btn-secondary{text-decoration:none;white-space:nowrap;}
.pip-account__tier{margin:12px 0 0;}
.pip-account__badge{display:inline-block;font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:12px;letter-spacing:.04em;background:var(--pip-ink);color:#fff;padding:6px 14px;border-radius:9999px;}
.pip-account__grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;}
.pip-account__tile{display:flex;justify-content:space-between;align-items:center;gap:12px;padding:22px;border:1px solid #ECECEC;border-radius:var(--radius-md);text-decoration:none;color:var(--pip-ink);font-family:'Inter',sans-serif;font-size:16px;font-weight:600;transition:all .25s cubic-bezier(.4,0,.2,1);}
.pip-account__tile svg{color:var(--pip-ink-60);transition:color .2s,transform .2s;}
.pip-account__tile:hover{border-color:var(--pip-ink);transform:translateY(-2px);box-shadow:0 10px 28px rgba(13,13,13,.10);}
.pip-account__tile:hover svg{color:var(--pip-gold);transform:translate(2px,-2px);}
.pip-account__upsell{display:flex;justify-content:space-between;align-items:center;gap:24px;flex-wrap:wrap;margin-top:28px;background:linear-gradient(135deg,#15171c,#0D0D0D);border-radius:var(--radius-lg);padding:28px 32px;}
.pip-account__upsell h3{font-family:'Syne',sans-serif;font-size:22px;font-weight:700;color:#fff;margin:6px 0 0;}
.pip-account__upsell .btn-primary{text-decoration:none;white-space:nowrap;}
@media(max-width:860px){
  .pip-auth{grid-template-columns:1fr;margin:24px 16px;}
  .pip-auth__aside{min-height:auto;padding:32px 28px;}
  .pip-auth__main{padding:32px 28px;}
  .pip-account{margin:32px 16px;}
  .pip-account__grid{grid-template-columns:1fr;}
  .pip-account__head{flex-direction:column;}
}

/* ── Due-diligence documents + NDA gate ───────────────────────────── */
.pip-dd{display:flex;flex-direction:column;}
.pip-doc-card__tag{display:inline-block;margin-left:8px;font-size:10px;font-weight:600;letter-spacing:.04em;text-transform:uppercase;color:var(--pip-gold);border:1px solid var(--pip-gold);border-radius:9999px;padding:1px 7px;vertical-align:middle;}
.pip-dd__note{font-family:'Inter',sans-serif;font-size:12.5px;color:var(--pip-ink-60);margin:12px 0 0;}
.pip-nda{background:#15171c;color:#fff;border-radius:var(--radius-md);padding:24px 26px;margin-bottom:18px;}
.pip-nda__lock{font-size:22px;display:block;margin-bottom:8px;}
.pip-nda__title{font-family:'Syne',sans-serif;font-size:18px;font-weight:700;color:#fff;margin:0 0 10px;}
.pip-nda__terms{font-family:'Inter',sans-serif;font-size:13.5px;line-height:1.6;color:rgba(255,255,255,.78);margin:0 0 16px;max-height:160px;overflow:auto;}
.pip-nda__check{display:flex;gap:10px;align-items:flex-start;font-family:'Inter',sans-serif;font-size:13.5px;color:rgba(255,255,255,.9);margin-bottom:16px;cursor:pointer;}
.pip-nda__check input{accent-color:var(--pip-gold);width:16px;height:16px;margin-top:2px;flex:none;}
.pip-nda__btn{border:0;cursor:pointer;}

/* ── Financials, redesigned (visual snapshot) ─────────────────────── */
.pip-fin2{display:flex;flex-direction:column;gap:34px;}
.pip-fin2__eyebrow{font-size:11px;letter-spacing:.14em;text-transform:uppercase;color:var(--pip-gold);font-weight:600;display:block;}
.pip-fin2__big{display:block;font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:32px;font-weight:600;letter-spacing:-0.02em;line-height:1;color:var(--pip-ink);white-space:nowrap;}
.pip-fin2__cap{display:block;margin-top:9px;font-size:12px;letter-spacing:.03em;text-transform:uppercase;color:var(--pip-ink-60);}
.pip-fin2__hero{display:grid;grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:28px 24px;padding-bottom:32px;border-bottom:1px solid #ECECEC;}
.pip-fin2__stat.is-feature{position:relative;grid-column:span 2;}
@media(max-width:600px){.pip-fin2__stat.is-feature{grid-column:span 1;}}
.pip-fin2__stat.is-feature .pip-fin2__big{font-size:46px;}
.pip-fin2__stat.is-feature .pip-fin2__big::after{content:"";display:block;width:38px;height:3px;background:var(--pip-gold);border-radius:2px;margin-top:14px;}
.pip-fin2__bhead{display:flex;justify-content:space-between;align-items:baseline;gap:12px;margin-bottom:14px;}
.pip-fin2__gross{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:13px;color:var(--pip-ink-60);}
.pip-fin2__bar{display:flex;height:16px;border-radius:9999px;overflow:hidden;background:var(--pip-surface);}
.pip-fin2__seg{height:100%;}
.pip-fin2__seg--noi{background:var(--pip-gold);}
.pip-fin2__seg--opex{background:var(--pip-ink);}
.pip-fin2__seg--rates{background:var(--pip-ink-30);}
.pip-fin2__legend{display:flex;flex-wrap:wrap;gap:12px 26px;list-style:none;padding:0;margin:16px 0 0;font-size:13px;color:var(--pip-ink-60);}
.pip-fin2__leg{display:flex;align-items:center;gap:8px;}
.pip-fin2__leg b{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;color:var(--pip-ink);font-weight:600;}
.pip-fin2__dot{width:10px;height:10px;border-radius:3px;}
.pip-fin2__leg--noi .pip-fin2__dot{background:var(--pip-gold);}
.pip-fin2__leg--opex .pip-fin2__dot{background:var(--pip-ink);}
.pip-fin2__leg--rates .pip-fin2__dot{background:var(--pip-ink-30);}
/* Returns — dark premium panel with sparkline */
.pip-fin2__returns{background:linear-gradient(155deg,#16181d 0%,#0d0d0d 55%,#1c1407 100%);border-radius:var(--radius-lg);padding:30px 30px 0;overflow:hidden;}
.pip-fin2__rets{display:flex;flex-wrap:wrap;gap:14px 40px;}
.pip-fin2__ret .pip-fin2__big{color:#fff;font-size:30px;}
.pip-fin2__ret .pip-fin2__cap{color:rgba(255,255,255,.6);}
.pip-fin2__spark{display:block;width:100%;height:84px;margin-top:18px;}
.pip-fin2__spark-fill{fill:rgba(196,153,42,.20);}
.pip-fin2__spark-line{fill:none;stroke:var(--pip-gold);stroke-width:2;vector-effect:non-scaling-stroke;}
/* Occupancy meter */
.pip-fin2__meter{height:12px;border-radius:9999px;background:var(--pip-surface);overflow:hidden;}
.pip-fin2__meter span{display:block;height:100%;border-radius:9999px;background:linear-gradient(90deg,var(--pip-gold),#dcb556);}
.pip-fin2__occ{margin-bottom:24px;}
/* Spec grid + chips */
.pip-fin2__specs{display:grid;grid-template-columns:repeat(auto-fit,minmax(116px,1fr));gap:22px 24px;margin-top:16px;}
.pip-fin2__specs--3{grid-template-columns:repeat(3,minmax(0,1fr));max-width:440px;}
.pip-fin2__sv{display:block;font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:19px;font-weight:600;color:var(--pip-ink);}
.pip-fin2__sl{display:block;margin-top:5px;font-size:12px;color:var(--pip-ink-60);}
.pip-fin2__chips{margin-top:24px;}
.pip-fin2__chiprow{display:flex;flex-wrap:wrap;gap:8px;margin-top:11px;}
.pip-fin2__chip{font-family:'Inter',sans-serif;font-size:13px;font-weight:500;padding:8px 15px;border-radius:9999px;background:var(--pip-surface);color:var(--pip-ink);}
@media(max-width:600px){
  .pip-fin2__stat.is-feature .pip-fin2__big{font-size:38px;}
  .pip-fin2__big{font-size:27px;}
  .pip-fin2__specs--3{max-width:none;}
}

/* ── Documents, redesigned (secure data room) ─────────────────────── */
.pip-room__head{display:flex;justify-content:space-between;align-items:flex-end;gap:16px;margin-bottom:8px;}
.pip-room__count{font-family:'Syne',sans-serif;font-size:22px;font-weight:700;color:var(--pip-ink);margin:7px 0 0;}
.pip-room__status{font-size:12px;font-weight:600;letter-spacing:.02em;color:var(--pip-ink-60);background:var(--pip-surface);padding:8px 14px;border-radius:9999px;white-space:nowrap;}
.pip-room__status.is-open{color:#2D7D46;background:rgba(45,125,70,.10);}
.pip-room__list{list-style:none;margin:18px 0 0;padding:0;border-top:1px solid #ECECEC;}
.pip-room__doc{display:flex;align-items:center;gap:18px;padding:18px 14px;border-bottom:1px solid #ECECEC;text-decoration:none;color:var(--pip-ink);transition:background .2s ease;border-radius:12px;}
.pip-room__doc:hover{background:var(--pip-surface);}
.pip-room__idx{font-family:var(--pip-figure);font-variant-numeric:tabular-nums;font-size:13px;font-weight:600;color:var(--pip-gold);min-width:22px;}
.pip-room__body{flex:1;display:flex;flex-direction:column;gap:3px;min-width:0;}
.pip-room__name{font-family:'Inter',sans-serif;font-size:16px;font-weight:600;color:var(--pip-ink);line-height:1.3;}
.pip-room__meta{font-size:12px;color:var(--pip-ink-60);letter-spacing:.02em;}
.pip-room__act{display:inline-flex;align-items:center;gap:7px;font-family:'Inter',sans-serif;font-size:13px;font-weight:600;white-space:nowrap;}
.pip-room__dl{color:var(--pip-ink);}
.pip-room__dl svg{width:16px;height:16px;}
.pip-room__doc:hover .pip-room__dl{color:var(--pip-gold);}
.pip-room__act--locked{color:var(--pip-ink-60);font-weight:500;}
.pip-room__doc.is-locked .pip-room__name{color:var(--pip-ink-60);}
.pip-room .pip-nda{margin:18px 0 4px;}
@media(max-width:600px){
  .pip-room__doc{gap:12px;padding:16px 10px;}
  .pip-room__name{font-size:15px;}
  .pip-room__act{font-size:12px;}
}

/* ── Inline SVG icons (replace emoji) ─────────────────────────────── */
.pip-ico{width:1em;height:1em;display:inline-block;vertical-align:-0.14em;flex:none;}
.pip-room__status .pip-ico,.pip-room__act .pip-ico{width:14px;height:14px;}
.pip-room__act--locked .pip-ico{color:var(--pip-gold);}
.pip-nda__lock .pip-ico{width:26px;height:26px;color:var(--pip-gold);}
.pip-gate-locked__icon .pip-ico{width:28px;height:28px;color:var(--pip-gold);}
.pip-remove .pip-ico{width:12px;height:12px;}
.badge--gold .pip-ico{width:13px;height:13px;}

/* ── Header: tighten the oversized logo that inflated the bar ──────── */
/* The .pip-logo card held a 96px logo, pushing the header to ~120px and
   leaving an empty white band above the breadcrumb. Bring it to a standard
   bar height; the rounded-bottom card still reads as a hanging logo. */
[data-elementor-type="header"] .pip-logo img { height: 116px !important; width: auto !important; }
[data-elementor-type="header"] .pip-logo { padding: 2px 16px 4px !important; }
/* The header's flex container was computing as display:inline, which collapsed
   the layout and let the logo's line-box balloon the bar to ~120px, leaving an
   empty white band above the breadcrumb. Restore a proper centred flex row so
   the header sits tight to its content (~80px). */
[data-elementor-type="header"] .e-con,
[data-elementor-type="header"] .e-con-inner {
  display: flex !important;
  min-height: 0 !important;
  --min-height: 0px !important;
}
[data-elementor-type="header"] .e-con-inner { align-items: center !important; }

/* ── Hero text legibility over the bright skyline image ───────────── */
/* Soft shadow halo lets the white headline/subtitle stay crisp over the
   brighter parts of the photo without darkening the whole image. */
.elementor-element-piphero01 h1 { text-shadow: 0 2px 30px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.45); }
.elementor-element-piphero01 .elementor-element-pipsub01 p { color: rgba(255,255,255,.97) !important; text-shadow: 0 1px 14px rgba(0,0,0,.6), 0 1px 3px rgba(0,0,0,.5); }
.elementor-element-piphero01 .pip-eyebrow, .elementor-element-piphero01 .pip-eyebrow--light { text-shadow: 0 1px 10px rgba(0,0,0,.5); }

/* ── Hero scroll parallax (depth + zoom) ──────────────────────────── */
/* A dedicated image layer we transform on scroll, a static veil for text
   legibility (replaces the Elementor ::before scrim), and content above. */
.pip-hero-animated { overflow: hidden !important; }
.pip-hero-animated::before { display: none !important; }
.pip-hero-fx {
  position: absolute; inset: 0; z-index: 0;
  background-position: center; background-size: cover; background-repeat: no-repeat;
  transform-origin: center; will-change: transform; backface-visibility: hidden;
}
.pip-hero-veil {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(100deg, rgba(11,13,18,0.82) 0%, rgba(11,13,18,0.12) 55%, rgba(11,13,18,0) 92%);
}
.pip-hero-animated > .elementor-element { position: relative; z-index: 2; will-change: transform, opacity; }
@media (prefers-reduced-motion: reduce) {
  .pip-hero-fx { transform: none !important; }
  .pip-hero-animated > .elementor-element { transform: none !important; opacity: 1 !important; }
}

/* ── Entrance animations (scroll reveal + popup) ──────────────────── */
.pip-reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s cubic-bezier(.2,.6,.2,1), transform .65s cubic-bezier(.2,.6,.2,1); }
.pip-reveal--left  { transform: translateX(-28px); }
.pip-reveal--right { transform: translateX(28px); }
.pip-reveal.is-in  { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .pip-reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
/* Quick-view popup: subtle fade-up + scale as content loads */
@keyframes pip-qv-in { from { opacity: 0; transform: translateY(12px) scale(.985); } to { opacity: 1; transform: none; } }
.pip-qv-stage .pip-qv { animation: pip-qv-in .36s cubic-bezier(.2,.6,.2,1) both; }
@media (prefers-reduced-motion: reduce) { .pip-qv-stage .pip-qv { animation: none; } }

/* ── Legal / policy pages ─────────────────────────────────────────── */
.pip-legal { max-width: 820px; margin: 0 auto; padding: 8px 0 8px; font-family: 'Inter', sans-serif; color: var(--pip-ink); }
.pip-legal h1 { font-family: 'Syne', sans-serif; font-size: 40px; font-weight: 700; line-height: 1.15; margin: 0 0 8px; }
.pip-legal .pip-legal__updated { color: var(--pip-ink-60); font-size: 14px; margin: 0 0 32px; }
.pip-legal h2 { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; margin: 36px 0 10px; }
.pip-legal h3 { font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; margin: 22px 0 6px; }
.pip-legal p, .pip-legal li { font-size: 15.5px; line-height: 1.7; color: #3a3a3a; }
.pip-legal ul { padding-left: 22px; margin: 10px 0; }
.pip-legal li { margin-bottom: 6px; }
.pip-legal a { color: var(--pip-gold); text-decoration: underline; }
.pip-legal strong { color: var(--pip-ink); }
.pip-legal__note { background: var(--pip-surface); border-left: 3px solid var(--pip-gold); padding: 14px 18px; border-radius: 8px; font-size: 14px; color: var(--pip-ink-60); margin: 0 0 28px; }
