.styling-intro {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.styling-intro h2 {
  margin: 18px 0 22px;
}

.offerings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-top: 72px;
}

.offering-card {
  border: 1px solid var(--line);
  background: var(--paper);
}

.offering-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.offering-card__body {
  padding: 36px;
}

.offering-card__tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.offering-card h3 {
  margin: 14px 0 14px;
}

.offering-card ul {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offering-card li {
  font-size: 0.9rem;
  padding-left: 22px;
  position: relative;
}

.offering-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.approach {
  background: var(--taupe);
}

.approach__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}

.approach__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.approach__body h2 {
  margin: 18px 0 24px;
}

.approach__list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.approach__list li {
  padding-left: 30px;
  position: relative;
}

.approach__list li strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  margin-bottom: 4px;
}

.approach__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 16px;
  height: 1px;
  background: var(--gold);
}

.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}

.faq__item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

@media (max-width: 860px) {
  .offerings,
  .approach__grid {
    grid-template-columns: 1fr;
  }

  .approach__media {
    order: -1;
  }
}
