/* Home page only. */

.hero{
  background: var(--black);
  color: var(--white);
  padding: 108px 0 88px;
  position: relative;
  overflow: hidden;
}
.hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 90% at 82% 0%, rgba(179,18,45,.20), transparent 60%),
    radial-gradient(50% 60% at 8% 100%, rgba(179,18,45,.10), transparent 60%);
  pointer-events: none;
}
.hero .wrap{ position: relative; max-width: 880px; }
.hero .eyebrow{ color: var(--accent-bright); margin-bottom: 22px; display: block; }
.hero h1{
  font-size: clamp(2.6rem, 8.4vw, 5.6rem);
  margin-bottom: 26px;
}
.hero h1 em{
  font-style: normal;
  color: var(--accent);
}
.hero p.lede{
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.7;
  color: var(--muted-dark);
  max-width: 620px;
  margin-bottom: 40px;
}
.hero .cta-row{ display: flex; gap: 16px; flex-wrap: wrap; }

.trust-strip{
  background: var(--charcoal-2);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}
.trust-strip .wrap{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 30px 28px;
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}
.trust-item .num{
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  line-height: 1;
}
.trust-item span.label{
  font-size: .78rem;
  letter-spacing: .06em;
  color: var(--muted-dark);
  display: block;
  margin-top: 2px;
}
.trust-item strong{ font-size: .95rem; display: block; }

/* ---------- featured strip ----------
   Added 2026-09-18. The home page used to show no actual product until you had
   scrolled past three abstract category tiles, and a real visitor gave up
   before finding any. Baymard's homepage research is blunt about this: a
   visitor needs to see real product, not category names, to believe there is a
   shop worth browsing. Four real shirts, one from each corner, then a door to
   the rest. */
.featured{
  background: var(--paper-dim);
  padding: 76px 0 84px;
  border-bottom: 1px solid var(--line-light);
}
.featured .head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.featured .eyebrow{ color: var(--accent); display: block; margin-bottom: 10px; }
.featured h2{ font-size: clamp(1.7rem, 4.4vw, 2.5rem); color: var(--ink); }
.featured .head p{
  margin-top: 10px;
  color: var(--muted-light);
  font-size: .96rem;
  line-height: 1.6;
  max-width: 46ch;
}
.featured-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.featured-more{
  margin-top: 34px;
  display: flex;
  justify-content: center;
}

.collections{ padding: 100px 0 110px; }
.collections .head{
  max-width: 640px;
  margin: 0 auto 52px;
  text-align: center;
}
.collections .eyebrow{ color: var(--accent); display: block; margin-bottom: 14px; }
.collections h2{
  font-size: clamp(1.9rem, 5vw, 2.9rem);
  color: var(--ink);
}
.collections .head p{
  margin-top: 16px;
  color: var(--muted-light);
  font-size: 1rem;
  line-height: 1.6;
}

.tile-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.tile{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 30px 26px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tile:hover{ transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.tile .tile-eyebrow{ font-size: .7rem; letter-spacing: .2em; margin-bottom: 10px; }
.tile h3{ font-size: 2rem; margin-bottom: 12px; }
.tile p{ font-size: .92rem; line-height: 1.55; max-width: 30ch; }
.tile .go{
  margin-top: 22px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.tile .go::after{ content: "\2192"; transition: transform .18s ease; }
.tile:hover .go::after{ transform: translateX(4px); }

.tile-anime{
  color: var(--white);
  background: var(--black);
}
.tile-anime::before{
  content: "";
  position: absolute; inset: 0;
  background: #fbfaf7;
  /* Light wedge confined to the top of the card so it never runs under the
     text block, which always sits flush at the bottom. */
  clip-path: polygon(0 0, 100% 0, 100% 18%, 0 48%);
  pointer-events: none;
}
.tile-anime .tile-eyebrow{ color: var(--accent); position: relative; }
.tile-anime h3, .tile-anime p, .tile-anime .go{ color: var(--white); position: relative; }

.tile-gag{
  color: var(--ink);
  background-color: var(--cream);
  background-image: radial-gradient(rgba(27,27,27,.14) 1.4px, transparent 1.6px);
  background-size: 13px 13px;
}
.tile-gag .tile-eyebrow{ color: var(--accent); }
.tile-gag h3{ font-family: var(--font-display); letter-spacing: .02em; }

.tile-dark{
  color: var(--white);
  background: var(--black);
}
.tile-dark::after{
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 50% 100%, rgba(179,18,45,.35), transparent 70%);
  pointer-events: none;
}
.tile-dark .tile-eyebrow{ color: var(--accent-bright); position: relative; }
.tile-dark h3, .tile-dark p, .tile-dark .go{ position: relative; }
.tile-dark p{ color: var(--muted-dark); }

@media (max-width: 1000px){
  .featured-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px){
  .tile-grid{ grid-template-columns: 1fr; }
  .trust-strip .wrap{ grid-template-columns: 1fr; gap: 16px; padding: 26px 28px; }
}
@media (max-width: 620px){
  .featured{ padding: 52px 0 58px; }
  .featured-grid{ gap: 14px; }
  .featured .head{ margin-bottom: 24px; }
  .trust-strip .wrap{ padding: 24px 18px; }
  .collections{ padding: 62px 0 70px; }
  .solo-section{ padding: 62px 0; }
}
