/* ========== Home hero ========== */
.home-hero {
  position: relative;
  min-height: calc(100vh - var(--util-h) - var(--header-h));
  min-height: calc(100svh - var(--util-h) - var(--header-h));
  display: grid;
  place-items: end center;
  overflow: hidden;
  background: var(--bg-sand);
}

.home-hero__media {
  position: absolute;
  inset: 0;
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(20, 16, 12, 0.45) 0%,
    rgba(20, 16, 12, 0.08) 45%,
    rgba(20, 16, 12, 0.12) 100%
  );
}

.home-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 var(--pad) clamp(48px, 8vh, 88px);
  color: var(--white);
}

.home-hero__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.home-hero__title {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.home-hero__text {
  max-width: 440px;
  margin: 0 auto 28px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.86);
}

/* ========== Editorial blocks ========== */
.editorial {
  display: grid;
  background: var(--bg);
}

.editorial__media {
  min-height: min(70vh, 720px);
  background: var(--bg-sand);
  overflow: hidden;
}

.editorial__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}

.editorial:hover .editorial__media img {
  transform: scale(1.03);
}

.editorial__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 7vw, 88px) clamp(28px, 6vw, 80px);
  background: var(--bg);
}

.editorial__copy .section-title {
  margin-bottom: 4px;
}

.editorial__copy .cta {
  margin-top: 28px;
  align-self: flex-start;
}

@media (min-width: 900px) {
  .editorial {
    grid-template-columns: 1.15fr 0.85fr;
    min-height: min(78vh, 760px);
  }

  .editorial--reverse {
    grid-template-columns: 0.85fr 1.15fr;
  }

  .editorial--reverse .editorial__media {
    order: 2;
  }

  .editorial--reverse .editorial__copy {
    order: 1;
  }

  .editorial__media {
    min-height: 100%;
  }
}

/* ========== Category strip ========== */
.cat-strip {
  padding: clamp(40px, 6vw, 72px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.cat-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .cat-strip__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

@media (min-width: 1000px) {
  .cat-strip__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
}

.cat-card {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-sand);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}

.cat-card:hover img {
  transform: scale(1.04);
}

.cat-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 28px 20px 22px;
  background: linear-gradient(to top, rgba(20, 16, 12, 0.62), transparent);
  color: var(--white);
  text-align: center;
}

.cat-card__label span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 6px;
  opacity: 0.8;
}

.cat-card__label strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* ========== Quote band ========== */
.quote-band {
  padding: clamp(64px, 10vw, 120px) var(--pad);
  text-align: center;
  background: var(--bg);
}

.quote-band blockquote {
  max-width: 720px;
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
}

.quote-band cite {
  display: block;
  margin-top: 28px;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
