/* ───── Linen hero ─────
   Editorial title card. Generous whitespace. Single quiet CTA. The image
   does the heavy lifting — type and motion stay out of its way.
*/
.linen-hero {
  position: relative;
  height: var(--hero-height, 88vh);
  min-height: 560px;
  background: var(--color-text);
  color: var(--color-paper);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
}
.linen-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.linen-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.06) 35%, rgba(0,0,0,0.45) 100%);
  opacity: calc(0.55 + var(--scrim-strength, 0.25) * 0.45);
}

.linen-hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  gap: var(--space-5);
}
.linen-hero__content {
  max-width: 720px;
  display: grid;
  gap: var(--space-5);
}
.linen-hero--center .linen-hero__inner { justify-items: center; text-align: center; }
.linen-hero--center .linen-hero__content { margin: 0 auto; }

.linen-hero__eyebrow {
  /* Override: hero is on dark, so the accent eyebrow ::before rule needs
     to be paper-coloured for legibility. The text stays olive. */
  color: var(--color-accent);
  margin: 0;
}
.linen-hero__eyebrow::before {
  background: var(--color-accent);
}
.linen-hero__heading {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--color-paper);
  margin: 0;
  max-width: 18ch;
}
.linen-hero--center .linen-hero__heading { max-width: 22ch; }
.linen-hero__body {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--color-paper);
  opacity: 0.78;
  max-width: 50ch;
  margin: 0;
}
.linen-hero__ctas {
  display: flex;
  gap: var(--space-4);
  align-items: center;
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
.linen-hero__ctas .btn--primary {
  background: var(--color-paper);
  color: var(--color-text);
  border-color: var(--color-paper);
}
.linen-hero__ctas .btn--primary:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-accent-ink);
}
.linen-hero__ctas .btn--ghost { color: var(--color-paper); }

@media (max-width: 640px) {
  .linen-hero { min-height: 420px; height: 78vh; }
  .linen-hero__heading { font-size: clamp(2.25rem, 12vw, 4rem); }
  .linen-hero__body { font-size: 1rem; }
  .linen-hero__ctas { gap: var(--space-3); }
}
