/* ── Hero ── */
.pd-hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;
}
@media (min-width: 768px) { .pd-hero { max-height: 900px; } }
.pd-hero-bg {
  position: absolute;
  inset: 0;
}
.pd-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,28,46,0.8) 0%, rgba(15,28,46,0.15) 60%, rgba(15,28,46,0.05) 100%);
}
.pd-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 24px;
  max-width: 100%;
  z-index: 1;
}
@media (min-width: 768px) {
  .pd-hero-content { padding: 60px; max-width: 760px; }
}
.pd-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 20px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.pd-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.pd-hero-address {
  margin-bottom: 20px;
}
.pd-hero-city {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.pd-hero-price {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}

/* ── Specs Bar ── */
.pd-specs-bar {
  background: var(--fg);
  padding: 28px 60px;
}
.pd-specs-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 900px;
}
.pd-spec {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px;
}
.pd-spec:first-child { padding-left: 0; }
.pd-spec-val {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
}
.pd-spec-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.pd-spec-sep {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── Main Content Layout ── */
.pd-content {
  padding: 72px 60px;
  background: var(--bg);
}
.pd-content-inner {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  max-width: 1200px;
  align-items: start;
}

/* ── Sections ── */
.pd-section {
  margin-bottom: 56px;
}
.pd-section:last-child { margin-bottom: 0; }
.pd-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

/* Full description */
.pd-full-desc {
  font-size: 16px;
  line-height: 1.85;
  color: var(--fg-muted);
}

/* Gallery */
.pd-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.pd-gallery-item--primary {
  grid-column: 1 / -1;
}
.pd-gallery-img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.pd-gallery-item--primary .pd-gallery-img { height: 420px; }
.pd-gallery-item:not(.pd-gallery-item--primary) .pd-gallery-img { height: 200px; }
.pd-gallery-item:hover .pd-gallery-img { transform: scale(1.02); }

/* Features list */
.pd-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 32px;
}
.pd-features-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--fg);
  line-height: 1.4;
}
.pd-features-check {
  color: var(--gold);
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Neighborhood */
.pd-neighborhood {
  font-size: 15px;
  line-height: 1.8;
  color: var(--fg-muted);
}

/* Property navigation */
.pd-nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  margin-top: 40px;
}
.pd-nav-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
  padding: 16px 20px;
  border: 1px solid var(--border);
  border-radius: 3px;
  transition: border-color 0.2s, background 0.2s;
  flex: 1;
  max-width: 220px;
}
.pd-nav-link:hover { border-color: var(--gold); background: rgba(201,169,110,0.04); }
.pd-nav-link--next { text-align: right; }
.pd-nav-dir {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.pd-nav-name {
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color: var(--fg);
}

/* ── Sticky Mobile CTA ── */
.pd-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px;
  z-index: 50;
  gap: 12px;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .pd-sticky-cta { display: flex; }
  .pd-sticky-cta .pd-cta-btn {
    flex: 1;
    text-align: center;
    padding: 12px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
  }
  .pd-sticky-cta .pd-cta-btn--primary {
    background: var(--gold);
    color: var(--fg);
  }
  .pd-sticky-cta .pd-cta-btn--ghost {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
  }
  .pd-sidebar { display: none; }
}

/* ── Mobile text alignment fixes ── */
@media (max-width: 480px) {
  .pd-hero-tag { font-size: 9px; padding: 4px 10px; }
  .pd-hero-title { font-size: 28px; text-align: center; }
  .pd-hero-city { text-align: center; display: block; }
  .pd-hero-price { text-align: center; font-size: 32px; }
  .pd-specs-bar { padding: 16px 20px; overflow-x: auto; }
  .pd-specs-inner { min-width: 400px; }
  .pd-content { padding: 40px 20px; }
  .pd-features-list { grid-template-columns: 1fr; }
  .pd-section-title { font-size: 20px; }
}
.pd-sidebar { position: sticky; top: 32px; }
.pd-inquiry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 3px;
  overflow: hidden;
}
.pd-inquiry-card-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}
.pd-inquiry-card-price {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}
.pd-inquiry-card-address {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.5;
}
.pd-inquiry-card-actions {
  padding: 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pd-cta-btn {
  display: block;
  text-align: center;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.pd-cta-btn--primary {
  background: var(--gold);
  color: var(--fg);
}
.pd-cta-btn--primary:hover { background: var(--gold-dark); }
.pd-cta-btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}
.pd-cta-btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.pd-inquiry-card-note {
  padding: 0 28px 24px;
  font-size: 11px;
  color: var(--fg-muted);
  text-align: center;
  line-height: 1.5;
}
.pd-sidebar-back {
  margin-top: 24px;
  text-align: center;
}
.pd-back-link {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.pd-back-link:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .pd-content-inner { grid-template-columns: 1fr; gap: 48px; }
  .pd-sidebar { position: static; }
  .pd-inquiry-card-header { padding: 24px 24px 18px; }
  .pd-inquiry-card-actions { padding: 20px 24px; }
  .pd-inquiry-card-note { padding: 0 24px 20px; }
}
@media (max-width: 768px) {
  .pd-hero { height: 480px; }
  .pd-hero-content { padding: 40px 28px 40px; }
  .pd-hero-title { font-size: 32px; }
  .pd-specs-bar { padding: 20px 28px; }
  .pd-spec { padding: 0 20px; }
  .pd-spec-val { font-size: 22px; }
  .pd-content { padding: 48px 28px; }
  .pd-gallery { grid-template-columns: 1fr; }
  .pd-gallery-item--primary .pd-gallery-img { height: 280px; }
  .pd-features-list { grid-template-columns: 1fr; }
  .pd-nav { flex-direction: column; }
  .pd-nav-link { max-width: 100%; }
  .pd-nav-link--next { text-align: left; }
}