/* ==========================================================================
   K- & J-Beauty Page Styles
   ========================================================================== */

/* Key Points Section */
.kj-key-points .card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.kj-key-points .card__icon {
  margin-bottom: 1.25rem;
  color: var(--clr-rose, #c4a882);
}

.kj-key-points .card__icon svg {
  width: 48px;
  height: 48px;
}

.kj-key-points .card__title {
  margin-bottom: 0.75rem;
}

/* Bridge Statement */
.kj-bridge {
  text-align: center;
}

.kj-bridge .quote-block {
  max-width: 700px;
  margin: 0 auto;
}

.kj-bridge .quote-block__text {
  font-family: var(--font-heading, 'Cormorant Garamond', serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
}

/* Local Presence Section */
.kj-presence .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Location Cards */
.kj-location-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kj-location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.kj-location-card__flag {
  margin-bottom: 1.25rem;
  color: var(--clr-rose, #c4a882);
  display: flex;
  justify-content: center;
}

.kj-location-card__flag svg {
  width: 40px;
  height: 40px;
}

.kj-location-card .card__title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.kj-location-card .card__text {
  font-size: 0.95rem;
  opacity: 0.75;
}

/* Presence Note */
.kj-presence__note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.8;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .kj-key-points .card {
    padding: 2rem 1.5rem;
  }

  .kj-locations.grid--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .kj-location-card {
    padding: 2rem 1rem;
  }

  .kj-presence__note {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .kj-locations.grid--4 {
    grid-template-columns: 1fr;
  }

  .kj-bridge .quote-block__text {
    font-size: 1.35rem;
  }
}