/* ==========================================================================
   HOME PAGE
   ========================================================================== */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: 30% 10%;
}
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(15,16,19,0.92) 0%, rgba(15,16,19,0.55) 45%, rgba(15,16,19,0.25) 75%);
}
.hero__content {
  position: relative;
  padding-block: var(--sp-7) var(--sp-6);
  max-width: 760px;
  margin-right: clamp(0px, 5vw, 1px);
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--font-mono);
  font-size: var(--fs-mono);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: var(--sp-3);
}
.hero__eyebrow::before { content: ""; width: 1.6em; height: 2px; background: var(--amber); }
.hero h1 { color: #fff; font-size: var(--fs-display-xl); }
.hero h1 em {
  font-style: normal;
  color: var(--red);
}
.hero p.lead { color: rgba(247,246,243,0.82); margin-top: var(--sp-3); max-width: 46ch; }
.hero__actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; margin-top: var(--sp-5); }

.hero__ribbon {
  position: absolute;
  left: 0; right: 0; bottom: 0;
}

/* ---- USP band ------------------------------------------------------------*/
.usp-intro { max-width: 60ch; margin-bottom: var(--sp-6); }

/* ---- Split intro (about teaser) -------------------------------------------*/
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7);
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: var(--sp-5); }
}
.split__media { position: relative; }
.split__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-m);
}
.split__media-tag {
  position: absolute;
  bottom: -1px; left: -1px;
}

/* ---- Collections showcase --------------------------------------------------*/
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--sp-4);
  margin-bottom: var(--sp-5);
  flex-wrap: wrap;
}

/* ---- Testimonial / trust -----------------------------------------------------*/
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-6);
  align-items: center;
  justify-content: space-between;
}
