/* ---- Hero ---- */
.hero {
  position: relative;
  padding-block: var(--space-9) var(--space-8);
  display: grid;
  gap: var(--space-7);
  align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .hero { grid-template-columns: 1.05fr 0.95fr; gap: var(--space-8); } }
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 60%;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-mask-image: radial-gradient(ellipse at 75% 40%, #000 0%, transparent 68%);
  mask-image: radial-gradient(ellipse at 75% 40%, #000 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}
.hero-copy, .hero-media { position: relative; z-index: 1; }
.hero-copy h1 { margin-bottom: var(--space-4); }
.hero-copy p { font-size: 1.125rem; max-width: 46ch; margin-bottom: var(--space-6); }
.hero-media {
  aspect-ratio: 4/3.2;
  background: var(--color-gray-100);
  border: 1px solid var(--color-border);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.hero-media img { width: 100%; height: 100%; object-fit: contain; padding: var(--space-6); }

/* ---- Trust strip ---- */
.trust-strip {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-5);
}
.trust-strip ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.trust-strip li {
  padding-inline: var(--space-5);
  position: relative;
}
.trust-strip li + li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px; bottom: 2px;
  width: 1px;
  background: var(--color-border);
}
@media (max-width: 700px) {
  .trust-strip li + li::before { display: none; }
  .trust-strip li { padding-inline: var(--space-3); }
}
.trust-strip strong { color: var(--color-navy); }

/* ---- Featured products header row ---- */
.section-head-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  flex-wrap: wrap;
}

/* ---- About teaser ---- */
.about-teaser {
  display: grid;
  gap: var(--space-7);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .about-teaser { grid-template-columns: 1fr 1fr; align-items: center; } }
.about-teaser p { font-size: 1.0625rem; margin-bottom: var(--space-5); }
