.approach-section {
  background: linear-gradient(115deg, rgba(93, 43, 20, 0.08), transparent 52%);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  align-items: center;
  gap: 70px;
}

.approach-copy h2 {
  max-width: 650px;
}

.approach-copy p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.approach-copy .btn {
  margin-top: 12px;
}

.approach-highlight {
  position: relative;
  overflow: hidden;
  border-radius: 42px 42px 42px 12px;
  background: var(--terracotta);
  color: var(--paper);
  box-shadow: var(--shadow);
  padding: clamp(30px, 5vw, 52px);
}

.approach-highlight::after {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 250, 244, 0.2);
  border-radius: 50%;
  content: "";
}

.approach-mark {
  display: block;
  margin-bottom: 70px;
  color: var(--cream-deep);
  font-family: var(--font-display);
  font-size: 3rem;
  font-style: italic;
}

.approach-highlight p {
  position: relative;
  z-index: 1;
  max-width: 340px;
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.05;
}

.approach-highlight strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--cream-deep);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .approach-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .approach-highlight {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .approach-highlight {
    border-radius: 30px 30px 30px 10px;
  }

  .approach-mark {
    margin-bottom: 48px;
  }

  .approach-highlight strong {
    font-size: 0.7rem;
  }
}
