/* ── Hero ── */
.ps-hero {
  padding: 90px 0 70px;
  background: linear-gradient(160deg, #F3F7FC 0%, #fff 60%);
  position: relative; overflow: hidden;
}
.ps-hero::before {
  content: ''; position: absolute; top: -120px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,79,216,.08) 0%, transparent 70%);
}
.ps-hero-inner {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center;
}
.ps-hero-copy h1 {
  font-size: clamp(44px,6vw,84px); font-weight: 900;
  line-height: .96; letter-spacing: -.03em; margin-bottom: 24px;
}
.ps-hero-copy h1 em { font-style: normal; color: var(--ps-accent); }
.ps-hero-sub { font-size: 18px; color: var(--ps-ink2); line-height: 1.65; max-width: 460px; margin-bottom: 36px; }
.ps-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 64px; }
.ps-hero-stats { display: flex; gap: 40px; padding-top: 32px; border-top: 1px solid var(--ps-line); }
.ps-hero-stats > div { display: flex; flex-direction: column; }
.ps-hero-stats b { font-size: 28px; font-weight: 900; line-height: 1; margin-bottom: 5px; }
.ps-hero-stats span { font-size: 12px; color: var(--ps-muted); letter-spacing: .04em; }

/* Hero Visual */
.ps-hero-visual { position: relative; height: 540px; }
.ps-hv-circle { position: absolute; top: 10%; right: 5%; width: 340px; height: 340px; border-radius: 50%; background: rgba(27,79,216,.07); }
.ps-hv-sq { position: absolute; bottom: 8%; left: 8%; width: 200px; height: 200px; background: rgba(90,174,255,.08); }
.ps-hv-frame {
  position: absolute; background: var(--ps-ink); padding: 10px;
  box-shadow: 0 24px 48px -12px rgba(13,27,42,.4), 0 8px 16px -8px rgba(13,27,42,.2);
  z-index: 1;
}
.ps-hv-frame img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ps-hv-ph { width: 100%; height: 100%; background: rgba(255,255,255,.15); }
.ps-hv-frame-1 { top: 20px; right: 10%; width: 220px; height: 280px; transform: rotate(-4deg); }
.ps-hv-frame-2 { top: 100px; left: 6%; width: 260px; height: 325px; transform: rotate(2.5deg); background: var(--ps-accent2); padding: 14px; }
.ps-hv-frame-3 { bottom: 40px; right: 25%; width: 190px; height: 190px; transform: rotate(-1.5deg); background: var(--ps-sky); padding: 12px; }
.ps-hv-badge {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  background: var(--ps-paper); border: 1px solid var(--ps-line);
  padding: 9px 18px; font-size: 11.5px; color: var(--ps-muted);
  border-radius: 99px; white-space: nowrap; z-index: 2;
}

/* ── Filters ── */
.ps-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px; }
.ps-filter-btn {
  padding: 8px 18px; border-radius: 99px; font-size: 13.5px; font-weight: 500;
  border: 1.5px solid var(--ps-line); background: var(--ps-bg); color: var(--ps-ink2);
  cursor: pointer; transition: all .15s; font-family: var(--ps-sans);
}
.ps-filter-btn:hover { border-color: var(--ps-accent); color: var(--ps-accent); }
.ps-filter-btn.active { background: var(--ps-ink); color: #fff; border-color: var(--ps-ink); }

/* ── Gallery Grid ── */
.ps-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ps-gallery-card {
  display: flex; flex-direction: column; gap: 12px;
  cursor: pointer; text-align: right;
  transition: transform .25s cubic-bezier(.2,.7,.3,1);
}
.ps-gallery-card:hover { transform: translateY(-4px); }
.ps-gallery-img-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--ps-r);
  aspect-ratio: 3/4;
  background: var(--ps-paper);
}
.ps-gallery-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
  display: block;
}
.ps-gallery-card:hover .ps-gallery-img-wrap img { transform: scale(1.04); }
.ps-gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(13,27,42,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity .25s;
}
.ps-gallery-card:hover .ps-gallery-overlay { opacity: 1; }
.ps-gallery-cta {
  background: #fff; color: var(--ps-ink);
  padding: 10px 20px; border-radius: 99px;
  font-size: 13px; font-weight: 600;
}
.ps-gallery-meta { display: flex; justify-content: space-between; align-items: center; padding: 0 2px; }
.ps-gallery-title { font-size: 14.5px; font-weight: 500; color: var(--ps-ink); }
.ps-gallery-price { font-size: 12.5px; color: var(--ps-muted); }
.ps-gallery-more { text-align: center; margin-top: 48px; }
.ps-empty { color: var(--ps-muted); text-align: center; padding: 40px 0; font-size: 15px; }

@media (max-width: 1024px) {
  .ps-hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .ps-hero-visual { height: 400px; }
  .ps-gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .ps-hero-visual { display: none; }
  .ps-hero-stats { gap: 24px; }
  .ps-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
}
@media (max-width: 480px) {
  .ps-gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
