/* Absolute Upholstery — Fabric Suppliers page
   Deliberately distinct from the split service-page hero: a centred banner on
   the brand green, a two-column copy block, and a suppliers roster (mirrors the
   commercial-contracts roster). */

/* ================================================================
   HERO — centred banner on the brand green (not the split hero)
================================================================ */
.sup-hero {
  padding-top: calc(72px + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(3.5rem, 9vw, 7rem);
  background-color: var(--au-black-900);
  background-image: radial-gradient(120% 85% at 50% 0%, rgba(247, 241, 230, 0.06), transparent 62%);
  text-align: center;
  border-bottom: 1px solid rgba(250, 247, 240, 0.10);
}
.sup-hero__inner {
  max-width: 46rem;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.sup-hero .eyebrow { color: var(--au-brass-300); margin-bottom: 1.2rem; }
.sup-hero h1 {
  color: var(--au-cream);
  font-weight: var(--fw-light);
  font-size: clamp(2.4rem, 1.6rem + 3.4vw, 4.5rem);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin-bottom: 1.35rem;
}
.sup-hero p {
  color: rgba(250, 247, 240, 0.82);
  font-size: var(--fs-lead);
  max-width: 42ch;
  margin-inline: auto;
}
.sup-hero__rule {
  width: clamp(84px, 22vw, 170px);
  height: 1px;
  margin: clamp(1.75rem, 4vw, 2.5rem) auto 0;
  background: linear-gradient(90deg, transparent, var(--au-brass-300), transparent);
}

/* ================================================================
   COPY — two content blocks in a row; stacks top-down at small tablet
================================================================ */
.sup-cols { padding-block: clamp(4rem, 8vw, 7rem); }
.sup-cols__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.25rem);
}
.sup-cols__block .eyebrow { margin-bottom: 1.1rem; }
.sup-cols__block h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-regular);
  color: var(--text-heading);
  line-height: var(--lh-heading);
  margin-bottom: 1.25rem;
}
.sup-cols__block p {
  color: var(--text-body);
  font-size: var(--fs-lead);
  line-height: var(--lh-body);
}
.sup-cols__block p + p { margin-top: 1.2rem; }

/* Side by side from large tablet up; stacked (top-down) at small tablet & below */
@media (min-width: 900px) {
  .sup-cols__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: clamp(3rem, 6vw, 6rem);
  }
}

/* ================================================================
   FEATURE — full-bleed split: copy left, 2x2 image grid right.
   Edge to edge, no gaps; the media sets the band height.
================================================================ */
.sup-feature {
  padding-block: 0;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  border-block: 1px solid var(--border-subtle);
}
.sup-feature__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.5rem, 8vw, 4rem) var(--gutter);
  background-color: var(--surface-page);
  background-image: var(--texture-paper);
}
.sup-feature__copy { width: 100%; max-width: 46ch; margin-inline: auto; }
.sup-feature__text .eyebrow { margin-bottom: 1.1rem; }
.sup-feature__text h2 {
  font-size: var(--fs-h2);
  font-weight: var(--fw-regular);
  color: var(--text-heading);
  line-height: var(--lh-heading);
  margin-bottom: 1.25rem;
}
.sup-feature__text p { color: var(--text-body); }
.sup-feature__text p + p { margin-top: 1rem; }
/* lighter supporting paragraph (light/dark contrast) */
.sup-feature__text .sup-feature__muted { color: var(--text-secondary); }
/* diamond-bullet list (capped at 5) */
.sup-feature__points {
  list-style: none;
  margin: clamp(1.4rem, 3vw, 2rem) 0 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.sup-feature__points li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--text-body);
  line-height: var(--lh-snug);
}
.sup-feature__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.45rem;
  height: 0.45rem;
  transform: rotate(45deg);
  background: var(--au-brass-300);
}
/* When the section stacks (images drop below) the copy panel is full-width,
   so split the prose and the bullets into a row — prose left, points right.
   Below 600px it's too narrow, so they stay stacked; at 900px+ the copy panel
   is the narrow half of the split section, so they stack there too. */
@media (min-width: 600px) and (max-width: 899px) {
  /* let the copy span the full panel so the split has room to breathe
     (two classes to beat the later `max-width: 899px` 62ch cap) */
  .sup-feature__text .sup-feature__copy { max-width: none; }
  .sup-feature__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(3rem, 8vw, 6rem);
    align-items: start;
  }
  .sup-feature__prose { max-width: none; }
  .sup-feature__points { margin-top: 0; }
}

.sup-feature__media { position: relative; overflow: hidden; min-height: 88vw; }
.sup-feature__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 0;
}
.sup-feature__cell {
  position: relative;
  overflow: hidden;
  background-color: var(--surface-page-alt);
  background-image: var(--texture-paper);
}
.sup-feature__cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Placeholder look: centred brass diamond + label */
.sup-grid__placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  color: var(--text-secondary);
}
.sup-grid__placeholder::before {
  content: "";
  width: 0.7rem;
  height: 0.7rem;
  transform: rotate(45deg);
  background: var(--au-brass-300);
  opacity: 0.65;
}
.sup-grid__placeholder span {
  font-family: var(--font-accent);
  font-variant-caps: small-caps;
  text-transform: lowercase;
  letter-spacing: 0.16em;
  font-size: var(--fs-caption);
}
@media (max-width: 899px) {
  .sup-feature__copy { max-width: 62ch; margin-inline: 0; }
}
@media (max-width: 599px) {
  /* more breathing room above/below the copy on phones */
  .sup-feature__text { padding-block: clamp(3.5rem, 12vw, 5rem); }
}
@media (min-width: 900px) {
  .sup-feature {
    grid-template-columns: 1fr 1fr;
    min-height: clamp(34rem, 52vw, 48rem);
  }
  .sup-feature__media { min-height: 0; }
  .sup-feature__text { padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 4vw, 4rem); }
}

/* ================================================================
   ROSTER — the suppliers list (mirrors .cm-contracts)
================================================================ */
.sup-list {
  padding-block: clamp(4.5rem, 9vh, 7.5rem);
  text-align: center;
  background-color: var(--surface-page-alt);
  background-image: var(--texture-paper);
  border-top: 1px solid var(--border-subtle);
}
.sup-list__head { text-align: center; }
.sup-list .eyebrow { margin-bottom: 1.1rem; color: var(--au-brass-300); }
.sup-list__head h2 { margin-bottom: 1.1rem; }
.sup-list__lead {
  color: var(--text-body);
  max-width: 54ch;
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}
.sup-list__grid {
  list-style: none;
  max-width: 72rem;
  margin-inline: auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.25rem;
  text-align: left;
}
.sup-list__grid li {
  position: relative;
  padding-left: 1.5rem;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  font-weight: var(--fw-light);
  color: var(--text-secondary);
  line-height: var(--lh-snug);
}
.sup-list__grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 0.42rem;
  height: 0.42rem;
  transform: rotate(45deg);
  background: var(--au-brass-300);
}
@media (min-width: 600px) {
  .sup-list__grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem 2.5rem; }
}
@media (min-width: 900px) {
  .sup-list__grid { grid-template-columns: repeat(4, 1fr); }
}
/* Small tablet: centre the roster as a balanced block under the heading.
   (On phones it stays full-width 2-col so the longer names have room.) */
@media (min-width: 600px) and (max-width: 899px) {
  .sup-list__grid { width: fit-content; margin-inline: auto; }
}

/* Phone: match the section rhythm (see the note in main.css). */
@media (max-width: 599px) {
  .sup-feature__text { padding-block: var(--panel-y); }
}
