/* ── Ways to work with me ─────────────────────────────────────────
   The offers, stated plainly once the method has been named. Editorial
   rows on ink, the same shape as the How I work pillars: title on the
   left, what it is and the way in on the right. Copy matches /stand-back. */

.ways {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: var(--space-xl) var(--pad-h);
}

.ways-heading {
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 130px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-left: -0.01em; /* opens on W */
}

.ways-rows {
  margin-top: var(--space-lg);
}

.ways-row {
  padding: var(--space-md) 0;
  border-top: 1px solid rgb(255 255 255 / 15%);
}

.ways-row:first-child {
  border-top: none;
}

.ways-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.ways-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-white);
  opacity: 0.85;
  max-width: 480px;
}

/* Bordered buttons, the same shape as the nav's Let's talk; on hover the
   ground goes orange and the type and arrow go ink */
.ways-cta {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-orange);
  text-decoration: none;
  margin-top: var(--space-sm);
  min-height: 44px;
  padding: 0 1.3em;
  border: 1.5px solid var(--color-orange);
  border-radius: var(--radius-cta);
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  transition:
    background-color 0.2s var(--ease-snap),
    color 0.2s var(--ease-snap);
}

.ways-cta:hover {
  background-color: var(--color-orange);
  color: var(--color-ink);
}

@media (min-width: 768px) {
  .ways-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    column-gap: var(--space-md);
    align-items: start;
  }

  .ways-title {
    margin-bottom: 0;
  }
}
