/* ============================================================
   about.css — About / company info section
   Jersey Shore Construction Supply Co.
   ============================================================ */

#about {
  background: var(--black);
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* Large watermark text */
#about::before {
  content: 'SUPPLY';
  position: absolute;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18vw;
  color: rgba(24, 60, 220, 0.025);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Feature list ── */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border: 1px solid var(--steel);
  transition: border-color 0.25s, background 0.25s;
}

.feature-item:hover {
  border-color: var(--red);
  background: rgba(212, 43, 43, 0.05);
}

.feature-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
  min-width: 40px;
}

.feature-text h4 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.9rem;
  color: var(--silver);
  line-height: 1.5;
}

/* ── Visual / image box ── */
.about-visual {
  position: relative;
}

.about-img-box {
  background: var(--charcoal);
  border: 1px solid var(--steel);
  padding: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
}

.about-img-box img {
  max-width: 100%;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

/* Badge */
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--red);
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  clip-path: polygon(15% 0%, 85% 0%, 100% 15%, 100% 85%, 85% 100%, 15% 100%, 0% 85%, 0% 15%);
}

.about-badge span:first-child {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--white);
  line-height: 1;
}

.about-badge span:last-child {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  line-height: 1.2;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-badge {
    display: none;
  }
}
