:root {
  --pb-bg: #f4f4f1;
  --pb-card: #f8f8f5;
  --pb-text: #0b0b0b;
  --pb-muted: #666666;
  --pb-border: #0b0b0b;
  --pb-accent: #c8ff00;
  --pb-accent-hover: #b2ee00;
}

body.home,
body.page-id-123 {
  background: var(--pb-bg);
  color: var(--pb-text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid var(--pb-border);
}

.admin-bar .site-header {
  top: 32px;
}

.pb-announcement {
  min-height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 16px;
  border-bottom: 1px solid var(--pb-border);
  background: #e8e8e4;
  color: var(--pb-text);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-navigation .main-nav ul li a {
  letter-spacing: 0;
}

.pb-home {
  background: var(--pb-bg);
  color: var(--pb-text);
}

.pb-home a {
  color: inherit;
}

.pb-section {
  border-bottom: 1px solid var(--pb-border);
  padding: 64px 24px;
}

.pb-section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.pb-section-title {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pb-hero {
  min-height: 600px;
  display: grid;
  grid-template-columns: 42fr 58fr;
  border-bottom: 1px solid var(--pb-border);
}

.pb-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  padding: 64px clamp(24px, 5vw, 72px);
  border-right: 1px solid var(--pb-border);
}

.pb-hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: 64px;
  line-height: .95;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pb-hero p {
  max-width: 520px;
  margin: 0;
  color: var(--pb-muted);
  font-size: 18px;
  line-height: 1.5;
}

.pb-hero-media img,
.pb-card img,
.pb-titanium-banner img,
.pb-feature-media img,
.pb-drop img,
.pb-guide-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pb-hero-media {
  min-height: 600px;
}

.pb-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pb-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 18px;
  border: 1px solid var(--pb-border);
  background: var(--pb-text);
  color: #fff !important;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.pb-button:hover {
  background: #2a2a2a;
}

.pb-button-accent {
  background: var(--pb-accent);
  color: var(--pb-text) !important;
}

.pb-button-accent:hover {
  background: var(--pb-accent-hover);
}

.pb-kickers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--pb-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.pb-card {
  min-height: 360px;
  display: grid;
  grid-template-rows: 80% 20%;
  border: 1px solid var(--pb-border);
  background: var(--pb-card);
  text-decoration: none;
}

.pb-card-copy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-top: 1px solid var(--pb-border);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pb-card-copy span:last-child {
  white-space: nowrap;
}

.pb-titanium-banner {
  display: grid;
  grid-template-columns: 60fr 40fr;
  margin-top: 16px;
  border: 1px solid var(--pb-border);
  background: var(--pb-card);
}

.pb-titanium-banner .pb-copy,
.pb-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 56px);
}

.pb-copy h3,
.pb-feature-copy h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.pb-copy p,
.pb-feature-copy p,
.pb-guide-card p {
  margin: 0;
  color: var(--pb-muted);
  line-height: 1.55;
}

.pb-feature {
  display: grid;
  grid-template-columns: 55fr 45fr;
  border: 1px solid var(--pb-border);
  background: var(--pb-card);
}

.pb-feature-media {
  min-height: 420px;
}

.pb-feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.pb-feature-list li {
  border-top: 1px solid var(--pb-border);
  padding-top: 8px;
}

.pb-drops {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pb-drop {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  border: 1px solid var(--pb-border);
  background: #111;
  color: #fff;
  text-decoration: none;
}

.pb-drop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .34);
}

.pb-drop-copy {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 1;
  padding: 20px;
}

.pb-drop h3,
.pb-guide-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.pb-drop p {
  max-width: 280px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, .82);
}

.pb-essentials .woocommerce ul.products {
  margin-bottom: 0;
}

.pb-essentials .woocommerce ul.products li.product {
  border: 1px solid var(--pb-border);
  background: var(--pb-card);
  padding: 0 0 18px !important;
  text-align: left;
}

.pb-essentials .woocommerce ul.products li.product img {
  border-bottom: 1px solid var(--pb-border);
  margin: 0 0 14px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.pb-essentials .woocommerce-loop-product__title,
.pb-essentials .price {
  padding: 0 14px !important;
}

.pb-essentials .button {
  margin-left: 14px !important;
  border: 1px solid var(--pb-border) !important;
  background: var(--pb-accent) !important;
  color: var(--pb-text) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase;
}

.pb-guides {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pb-guide-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--pb-border);
  background: var(--pb-card);
  text-decoration: none;
}

.pb-guide-card img {
  aspect-ratio: 4 / 3;
  border-bottom: 1px solid var(--pb-border);
}

.pb-guide-card div {
  padding: 18px;
}

.pb-text-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.pb-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--pb-border);
  background: var(--pb-card);
}

.pb-trust-item {
  min-height: 140px;
  padding: 22px;
  border-right: 1px solid var(--pb-border);
}

.pb-trust-item:last-child {
  border-right: 0;
}

.pb-trust-item h3 {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.pb-trust-item p {
  margin: 0;
  color: var(--pb-muted);
}

@media (max-width: 1024px) {
  .pb-hero,
  .pb-titanium-banner,
  .pb-feature {
    grid-template-columns: 1fr;
  }

  .pb-hero-copy {
    border-right: 0;
    border-bottom: 1px solid var(--pb-border);
  }

  .pb-grid-4,
  .pb-guides,
  .pb-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pb-drops {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pb-trust-item:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .pb-section {
    padding: 44px 16px;
  }

  .pb-hero {
    min-height: 0;
  }

  .pb-hero h1 {
    font-size: 42px;
  }

  .pb-hero-media {
    min-height: 360px;
  }

  .pb-grid-4,
  .pb-drops,
  .pb-guides,
  .pb-trust,
  .pb-feature-list {
    grid-template-columns: 1fr;
  }

  .pb-card {
    min-height: 340px;
  }

  .pb-trust-item,
  .pb-trust-item:nth-child(2n) {
    border-right: 0;
    border-bottom: 1px solid var(--pb-border);
  }

  .pb-trust-item:last-child {
    border-bottom: 0;
  }
}
