/*-------------------------------------------------
  What Guides Us (Refined Dark Luxury)
--------------------------------------------------*/

.wg-approach-section {
  --wg-bg: #000000;
  --wg-card-bg-top: #121212;
  --wg-card-bg-bottom: #0f0f0f;
  --wg-card-border: rgba(212, 175, 55, 0.2);
  --wg-card-border-hover: rgba(245, 217, 122, 0.42);
  --wg-gold: #d4af37;
  --wg-gold-soft: rgba(212, 175, 55, 0.18);
  --wg-heading: #f6f4ef;
  --wg-body: rgba(222, 220, 214, 0.76);
  position: relative;
  overflow: hidden;
  background: var(--wg-bg);
}

.wg-approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(100% 70% at 50% -24%, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 0) 38%);
}

.wg-approach-section .container {
  position: relative;
  z-index: 2;
}

.wg-approach-header {
  max-width: 700px;
  margin: 0 auto clamp(36px, 4vw, 52px);
}

.wg-approach-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid rgba(212, 175, 55, 0.34);
  background: rgba(212, 175, 55, 0.08);
  color: rgba(212, 175, 55, 0.9);
  font-family: var(--tp-ff-unbounded);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wg-approach-title {
  margin: 0;
  color: var(--wg-heading);
  font-family: var(--tp-ff-unbounded);
  font-size: clamp(36px, 4.8vw, 64px);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.wg-approach-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 26px);
  align-items: stretch;
}

.wg-approach-card {
  min-height: 286px;
  padding: clamp(24px, 2.2vw, 30px) clamp(18px, 2vw, 24px);
  border-radius: 18px;
  border: 1px solid var(--wg-card-border);
  background: linear-gradient(180deg, var(--wg-card-bg-top) 0%, var(--wg-card-bg-bottom) 100%);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.wg-approach-card:hover {
  transform: translateY(-5px);
  border-color: var(--wg-card-border-hover);
  box-shadow:
    0 20px 38px rgba(0, 0, 0, 0.5),
    0 0 22px rgba(212, 175, 55, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.wg-approach-icon-wrap {
  width: 70px;
  height: 70px;
  margin-bottom: 18px;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.38);
  background:
    radial-gradient(circle at 34% 26%, rgba(245, 217, 122, 0.14) 0%, rgba(212, 175, 55, 0.05) 48%, rgba(0, 0, 0, 0) 100%),
    rgba(14, 14, 14, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--wg-gold);
  box-shadow: 0 0 0 1px rgba(245, 217, 122, 0.06) inset;
}

.wg-approach-icon-wrap svg {
  width: 40px;
  height: 40px;
  display: block;
  stroke: currentColor;
}

.wg-approach-card-title {
  margin: 0 0 10px;
  color: var(--wg-heading);
  font-family: var(--tp-ff-unbounded);
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

.wg-approach-card p {
  margin: 0;
  max-width: 32ch;
  color: var(--wg-body);
  font-size: 15px;
  line-height: 1.72;
}

@media (max-width: 991px) {
  .wg-approach-section {
    padding-top: clamp(86px, 11vw, 110px);
    padding-bottom: clamp(90px, 12vw, 116px);
  }

  .wg-approach-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
    gap: 16px;
  }

  .wg-approach-card {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .wg-approach-section .container {
    padding-left: clamp(16px, 5vw, 24px);
    padding-right: clamp(16px, 5vw, 24px);
  }

  .wg-approach-grid {
    max-width: 100%;
    gap: 18px;
  }

  .wg-approach-card {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding: 22px 18px;
  }
}

@media (max-width: 575px) {
  .wg-approach-header {
    margin-bottom: 28px;
  }

  .wg-approach-label {
    margin-bottom: 12px;
    min-height: 30px;
    padding: 0 12px;
    font-size: 10px;
  }

  .wg-approach-title {
    font-size: clamp(30px, 9.5vw, 42px);
  }

  .wg-approach-card {
    padding: 22px 16px;
    border-radius: 16px;
  }

  .wg-approach-icon-wrap {
    width: 62px;
    height: 62px;
    margin-bottom: 14px;
  }

  .wg-approach-icon-wrap svg {
    width: 34px;
    height: 34px;
  }

  .wg-approach-card-title {
    font-size: clamp(18px, 6vw, 22px);
    margin-bottom: 8px;
  }

  .wg-approach-card p {
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wg-approach-card {
    transition: none;
  }
}
