:root {
  --ps-black: #090909;
  --ps-ink: #171514;
  --ps-ivory: #faf7ef;
  --ps-paper: #fffdfa;
  --ps-muted: #6f685f;
  --ps-line: #ded6c8;
  --ps-gold: #b9904a;
}

body .ps-page-wrap {
  color: var(--ps-ink);
}

.ps-hero-section {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ps-black);
}

.ps-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.ps-hero-section:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55) 52%, rgba(0,0,0,.18));
  pointer-events: none;
}

.ps-hero-section .row-bg-wrap,
.ps-hero-section .row-bg,
.ps-hero-section .wpb_wrapper {
  position: relative;
}

.ps-hero-section .wpb_wrapper {
  z-index: 2;
}

.ps-eyebrow {
  color: var(--ps-gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.ps-hero-section h1,
.ps-dark-section h1,
.ps-dark-section h2 {
  color: var(--ps-ivory);
}

.ps-hero-section h1 {
  max-width: 920px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: .98;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.ps-hero-section p:not(.ps-eyebrow) {
  max-width: 740px;
  color: rgba(250,247,239,.86);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.ps-button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.ps-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 4px;
  border: 1px solid rgba(250,247,239,.45);
  color: var(--ps-ivory);
  font-weight: 900;
  text-decoration: none;
}

.ps-btn-primary {
  color: var(--ps-black);
  background: var(--ps-gold);
  border-color: var(--ps-gold);
}

.ps-trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ps-line);
  border-bottom: 1px solid var(--ps-line);
  background: var(--ps-paper);
}

.ps-trust-strip > div {
  padding: 24px;
  border-right: 1px solid var(--ps-line);
}

.ps-trust-strip > div:last-child {
  border-right: 0;
}

.ps-trust-strip strong {
  display: block;
  color: var(--ps-black);
}

.ps-trust-strip span {
  display: block;
  margin-top: 5px;
  color: var(--ps-muted);
  font-size: 14px;
}

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

.ps-dark-section {
  color: var(--ps-ivory);
  background: var(--ps-black);
}

.ps-section-head {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.ps-section-head h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1.05;
}

.ps-section-head p {
  color: var(--ps-muted);
  font-size: 18px;
}

.ps-dark-section .ps-section-head p {
  color: rgba(250,247,239,.72);
}

.ps-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.ps-card {
  border: 1px solid var(--ps-line);
  border-radius: 8px;
  padding: 26px;
  background: var(--ps-paper);
  box-shadow: 0 18px 42px rgba(0,0,0,.06);
}

.ps-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.ps-card p {
  color: var(--ps-muted);
}

.ps-dark-section .ps-card {
  color: var(--ps-ivory);
  background: #141311;
  border-color: rgba(250,247,239,.18);
}

.ps-dark-section .ps-card p {
  color: rgba(250,247,239,.72);
}

.woocommerce ul.products li.product {
  border: 1px solid var(--ps-line);
  border-radius: 8px;
  overflow: visible;
  background: var(--ps-paper);
  box-shadow: 0 18px 42px rgba(0,0,0,.06);
  position: relative;
}

.woocommerce ul.products li.product .product-wrap {
  overflow: hidden;
  border-radius: 8px 8px 0 0;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 58px;
  padding: 18px 18px 0;
  color: var(--ps-black);
  font-size: 20px;
  line-height: 1.25;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: inherit;
  text-decoration: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title a:hover {
  color: var(--ps-gold);
}

.woocommerce ul.products li.product .onsale {
  top: 10px;
  right: 10px;
  z-index: 5;
  transform: none;
}

.woocommerce ul.products li.product .price {
  display: block;
  padding: 8px 18px 16px;
  color: var(--ps-gold);
  font-weight: 900;
  font-size: 18px;
}

.ps-badge {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(250,247,239,.94);
  color: var(--ps-black);
  font-size: 12px;
  font-weight: 900;
}

.ps-badge-sold {
  background: #7f1d1d;
  color: #fff;
}

.ps-local-note {
  color: var(--ps-muted);
  font-size: 14px;
}

@media (max-width: 999px) {
  .ps-trust-strip,
  .ps-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 690px) {
  .ps-hero-section {
    min-height: 680px;
    align-items: flex-end;
  }

  .ps-hero-section:before {
    background: linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.9));
  }

  .ps-hero-section h1 {
    font-size: 44px;
  }

  .ps-button-row,
  .ps-btn {
    width: 100%;
  }

  .ps-trust-strip,
  .ps-card-grid {
    grid-template-columns: 1fr;
  }

  .ps-trust-strip > div {
    border-right: 0;
    border-bottom: 1px solid var(--ps-line);
  }
}
