:root {
  --primary: #ff1a1a;
}

/* Section wrapper – gleiche Breite wie Navbar */
.about-section {
  position: relative;
  z-index: 1;

  width: 95%;
  max-width: 900px;
  margin: 0 auto;

  padding: 2.5rem 0 6rem 0;

}

/* Grid Layout */
.about-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;

  align-items: stretch;
}

@media (min-width: 992px) {
  .about-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
  }
}

/* ---------- LEFT SIDE ---------- */

.about-title {
  font-size: clamp(2.6rem, 3.8vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.about-accent {
  color: var(--primary);
  filter: drop-shadow(0 0 10px rgba(255, 26, 26, 0.35));
}

.about-text {
  margin-top: 1.6rem;
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(15, 23, 42, 0.85);
  font-weight: 300;
  max-width: 54ch;
}

/* Cards */
.about-cards {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .about-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.about-card {
  border-radius: 2.25rem;
  padding: 2rem;
  transition: transform 0.35s ease;
}

.about-card:hover {
  transform: translateY(-8px);
}

.about-icon {
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.about-card-title {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.9);
}

.about-card-text {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(15, 23, 42, 0.75);
}

/* ---------- RIGHT SIDE ---------- */

.about-right {
  display: flex;
  align-items: stretch;
}

/* Image Glass Panel */
.about-image {
  flex: 1;
  align-self: stretch;

  position: relative;
  overflow: hidden;

  border-radius: 3rem;
  padding: 0;

  min-height: 520px;
}

/* Image fully fills panel */
.about-image img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  display: block;

  filter: grayscale(1) brightness(1.1) contrast(1.2);
  transform: scale(1.06);
  transition: transform 0.9s ease, filter 0.9s ease;
}

.about-image:hover img {
  transform: scale(1.12);
  filter: grayscale(0) brightness(1.05) contrast(1.15);
}

/* Subtle red overlay like example */
.about-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(255, 26, 26, 0.35),
    rgba(0, 0, 0, 0)
  );
  mix-blend-mode: overlay;
  pointer-events: none;
}

/* Desktop Height Limiter */
@media (min-width: 992px) {
  .about-image {
    max-height: 620px;
  }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .about-section {
    padding: 5rem 0;
  }

  .about-image {
    min-height: 420px;
  }
}
