.custom-home-section {
  padding: clamp(58px, 8vw, 96px) 0;
  background: var(--white);
  color: var(--ink);
}

.custom-home-section--cream { background: var(--cream); }
.custom-home-section--gold { background: var(--gold-soft); }
.custom-home-section--green {
  background: linear-gradient(135deg, var(--green-950), var(--green-700));
  color: var(--white);
}

.custom-home-section__inner {
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
}

.custom-home-section--green .custom-home-section__inner {
  border-color: rgba(255, 255, 255, .18);
  background: rgba(7, 42, 30, .3);
  box-shadow: none;
}

.custom-home-section__inner--image {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.custom-home-section__copy { max-width: 760px; }
.custom-home-section__copy h2 { margin: 0 0 18px; }
.custom-home-section__copy p { margin-bottom: 25px; color: var(--muted); font-size: 1.05rem; }
.custom-home-section--green .custom-home-section__copy p { color: #d8e9df; }
.custom-home-section__eyebrow {
  display: inline-block;
  margin-bottom: 13px;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.custom-home-section--green .custom-home-section__eyebrow { color: #ffd575; }
.custom-home-section__media { overflow: hidden; border-radius: var(--radius); background: var(--sand); }
.custom-home-section__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.custom-home-section--green .custom-home-section__button { border-color: var(--gold); background: var(--gold); color: #3b2700; }
.custom-home-section--green .custom-home-section__button:hover { border-color: #f0b541; background: #f0b541; }

@media (max-width: 760px) {
  .custom-home-section__inner--image { grid-template-columns: 1fr; }
  .custom-home-section__media { order: -1; }
}

@media (max-width: 520px) {
  .custom-home-section { padding: 42px 0; }
  .custom-home-section__inner { padding: 24px 20px; border-radius: 20px; }
  .custom-home-section__button { width: 100%; }
}
