/* VELD Biltong feature section (brief 3.3).

   The supplied logo is gold and ivory on an opaque black canvas, so the
   section ground has to be pure #000 for the artwork's own background to
   disappear into it. Measured across the file's whole border ring: every
   pixel is #000 or within two levels of it, so no seam shows at any size.

   The palette is taken from the artwork rather than the site tokens. Ivory
   #f1e7d2 is the logo's own ivory and reads at 17:1 on black; the body tone
   is dropped to #d9d2c2 for paragraph comfort and still clears 12:1. This is
   the one place on the site that leaves the green-and-cream identity, which
   is the point: VELD is a brand within the brand. */

.veld {
  background: #000;
  color: #d9d2c2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6vw;
  padding: 90px 6vw;
}

.veld-copy .eyebrow {
  color: var(--gold);
}

.veld h2 {
  font: 600 clamp(34px, 4.4vw, 54px) / 1.06 Fraunces, serif;
  color: #f1e7d2;
  margin: 0;
}

.veld p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 46ch;
  margin: 24px 0 0;
}

.veld .text-link {
  color: #f1e7d2;
  border-bottom-color: #b5944899;
}

.veld .text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.veld-art {
  display: grid;
  place-items: center;
}

.veld-logo {
  display: block;
  width: min(360px, 100%);
  height: auto;
}

@media (max-width: 900px) {
  .veld {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 70px 6vw;
  }

  /* The logo leads on a phone. It holds nothing focusable, so moving it
     ahead of the copy visually does not disturb the tab order. */
  .veld-art {
    order: -1;
  }
}

@media (max-width: 580px) {
  .veld {
    padding: 60px 6vw;
  }

  .veld-logo {
    width: min(270px, 100%);
  }
}
