/* ========================================================================== 
   LS Metal Works - Homepage Founders Section
   ========================================================================== */

.founders-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgb(249 115 22 / 0.14), transparent 24rem),
    var(--color-primary);
  color: var(--color-white);
}

.founders-section::before {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent 0, transparent 119px, rgb(255 255 255 / 0.025) 120px);
  content: "";
  pointer-events: none;
}

.founders-layout {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.founders-content {
  max-width: 43rem;
}

.founders-section .section-eyebrow {
  color: #fdba74;
}

.founders-content h2 {
  margin-top: var(--space-3);
  color: var(--color-white);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1.12;
}

.founders-description {
  margin-top: var(--space-5);
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.82;
}

.founders-names {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-7);
}

.founder-name-card {
  padding: var(--space-5);
  border: 1px solid rgb(255 255 255 / 0.13);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: rgb(255 255 255 / 0.055);
}

.founder-name-card strong,
.founder-name-card span {
  display: block;
}

.founder-name-card strong {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: var(--font-size-xl);
}

.founder-name-card span {
  margin-top: var(--space-1);
  color: #fdba74;
  font-size: var(--font-size-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founders-link {
  display: inline-flex;
  gap: var(--space-2);
  align-items: center;
  margin-top: var(--space-6);
  color: #fdba74;
  font-weight: 700;
  transition: color var(--transition-fast), gap var(--transition-fast);
}

.founders-link:hover {
  gap: var(--space-3);
  color: var(--color-white);
}

.founders-visual {
  margin: 0;
}

.founders-image-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: var(--radius-lg);
  background: #111827;
  box-shadow: 0 2rem 4rem rgb(2 6 23 / 0.35);
}

.founders-image-frame::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.founders-image-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.founders-visual figcaption {
  margin-top: var(--space-4);
  color: #cbd5e1;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-align: center;
}

@media (min-width: 42rem) {
  .founders-names {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 62rem) {
  .founders-layout {
    grid-template-columns: minmax(21rem, 0.78fr) minmax(0, 1.22fr);
  }
}

@media (max-width: 61.99rem) {
  .founders-visual {
    grid-row: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .founders-link {
    transition: none;
  }
}
