/* ===================================================
   ROSE EVENTS — Who We Are Section (Home)
   =================================================== */

.who-we-are {
  position: relative;
  display: flex;
  align-items: center;
  min-height: auto;
  padding: 5rem 0;
  background: linear-gradient(to bottom, var(--white), var(--secondary));
  overflow: hidden;
}

@media (min-width: 1024px) {
  .who-we-are { min-height: 100vh; padding: 0; }
}

/* Decorative bg blurs */
.who-we-are .deco-blob-1 {
  position: absolute;
  top: 33%;
  left: -5rem;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(155, 44, 79, 0.04);
  filter: blur(180px);
  pointer-events: none;
}

.who-we-are .deco-blob-2 {
  position: absolute;
  bottom: -5rem;
  right: 10%;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(216, 195, 165, 0.12);
  filter: blur(160px);
  pointer-events: none;
}

.who-we-are-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .who-we-are-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

/* Left: Large typography */
.who-text-large {
  position: relative;
}

.who-text-large .deco-corner-tl {
  position: absolute;
  top: -1.25rem;
  left: -1.25rem;
  width: 5rem;
  height: 5rem;
  border-left: 1px solid rgba(155, 44, 79, 0.2);
  border-top: 1px solid rgba(155, 44, 79, 0.2);
}

.who-text-large .deco-corner-br {
  position: absolute;
  bottom: -1.25rem;
  right: -1.25rem;
  width: 5rem;
  height: 5rem;
  border-right: 1px solid rgba(155, 44, 79, 0.2);
  border-bottom: 1px solid rgba(155, 44, 79, 0.2);
}

.who-big-text {
  font-family: var(--font-serif);
  font-weight: 700;
  color: rgba(155, 44, 79, 0.45);
  line-height: 0.82;
  letter-spacing: -3px;
  font-size: clamp(4rem, 8vw, 11rem);
  user-select: none;
  pointer-events: none;
}

/* Vertical ornament */
.who-ornament {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.5rem;
}

@media (min-width: 1024px) {
  .who-ornament { margin-top: 2.5rem; }
}

.who-ornament .orn-line {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, transparent, rgba(155, 44, 79, 0.4));
}

.who-ornament .orn-diamond {
  width: 0.75rem;
  height: 0.75rem;
  transform: rotate(45deg);
  border: 1px solid rgba(155, 44, 79, 0.7);
  margin: 0.75rem 0;
}

.who-ornament .orn-line-down {
  width: 1px;
  height: 4rem;
  background: linear-gradient(to bottom, rgba(155, 44, 79, 0.4), transparent);
}

/* Right: feature cards */
.who-features-intro {
  font-family: var(--font-sans);
  color: var(--gray-500);
  line-height: 1.8;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
}

.who-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .who-features-grid { grid-template-columns: 1fr 1fr; }
}

/* Feature card */
.who-feature-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(2px);
  transition: all 500ms;
}

.who-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(155, 44, 79, 0.10);
}

.who-feature-card .card-line {
  width: 2.5rem;
  height: 2px;
  background: rgba(155, 44, 79, 0.4);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  transition: all 500ms;
}

.who-feature-card:hover .card-line {
  width: 100%;
  background: rgba(155, 44, 79, 0.6);
}

.who-feature-card .card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(155, 44, 79, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  transition: background 500ms;
}

.who-feature-card:hover .card-icon {
  background: rgba(155, 44, 79, 0.2);
}

.who-feature-card .card-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
  opacity: 0.8;
  transition: opacity 500ms;
}

.who-feature-card:hover .card-icon svg {
  opacity: 1;
}

.who-feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.375;
  transition: color 500ms;
}

.who-feature-card:hover h4 {
  color: var(--accent);
}

.who-feature-card p {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.625;
}
