/* ===================================================
   HEADWORKS – Über uns Page Styles
   =================================================== */

/* --- Hero About --- */
.hero--about {
  min-height: auto;
  padding: 160px 0 100px;
}

.hero__about-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

.hero__about-content {
  max-width: 540px;
}

.hero__about-photo {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
}

.hero__about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero__about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero--about .hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  transition: color var(--transition);
}

.hero--about .hero__breadcrumb:hover {
  color: rgba(255, 255, 255, 0.7);
}

.hero--about .hero__breadcrumb svg {
  transition: transform var(--transition);
}

.hero--about .hero__breadcrumb:hover svg {
  transform: translateX(-3px);
}

/* --- About Intro --- */
.about-intro {
  padding: 120px 0;
  background: var(--light);
}

.about-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-intro__text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.85;
  max-width: 520px;
}

/* --- About Intro Visual (Animated Element) --- */
.about-intro__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual {
  position: relative;
  width: 380px;
  height: 380px;
}

.about-visual__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--gray-200);
}

.about-visual__ring--outer {
  inset: 0;
  animation: ringRotate 20s linear infinite;
}

.about-visual__ring--inner {
  top: 40px;
  left: 40px;
  right: 40px;
  bottom: 40px;
  border-style: dashed;
  border-color: rgba(229, 9, 20, 0.15);
  animation: ringRotate 15s linear infinite reverse;
}

.about-visual__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  z-index: 2;
}

.about-visual__icon {
  color: var(--accent);
  display: flex;
}

.about-visual__tag {
  position: absolute;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  background: var(--white);
  padding: 6px 14px;
  border-radius: 60px;
  border: 1px solid var(--gray-200);
  white-space: nowrap;
  z-index: 3;
  animation: tagFloat 6s ease-in-out infinite;
}

.about-visual__tag--1 {
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.about-visual__tag--2 {
  bottom: 32px;
  left: 8px;
  animation-delay: 2s;
}

.about-visual__tag--3 {
  bottom: 32px;
  right: 8px;
  animation-delay: 4s;
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translateY(0) translateX(-50%);
  }
  50% {
    transform: translateY(-6px) translateX(-50%);
  }
}

.about-visual__tag--2,
.about-visual__tag--3 {
  animation-name: tagFloatSimple;
}

@keyframes tagFloatSimple {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

/* --- Roles --- */
.roles {
  padding: 120px 0;
  background: var(--white);
}

.roles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.role-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid transparent;
  transition: all var(--transition);
}

.role-card:hover {
  border-color: var(--gray-200);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
  transform: translateY(-4px);
}

.role-card__image {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.role-card__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.role-card__content {
  padding: 36px 32px;
}

.role-card__name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}

.role-card__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 16px;
}

.role-card__text {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 24px;
}

.role-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.role-card__tags li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 0;
  position: relative;
  padding-left: 12px;
}

.role-card__tags li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.35;
}

/* --- Story --- */
.story {
  padding: 140px 0;
  background: var(--dark);
}

.story__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.story__quote-mark {
  display: block;
  font-size: 6rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  font-family: Georgia, serif;
  margin-bottom: -12px;
}

.story .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.story .section-title {
  color: var(--white);
  max-width: 100%;
}

.story__text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.85;
  margin-bottom: 20px;
}

.story__text:last-child {
  margin-bottom: 0;
}

.story__line {
  width: 48px;
  height: 2px;
  background: var(--accent);
  margin: 36px auto 0;
  opacity: 0.4;
}

/* --- Story Visual --- */
.story__visual {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 120px;
  height: 200px;
  opacity: 0.6;
  pointer-events: none;
}

.story__visual-svg {
  width: 100%;
  height: 100%;
}

/* --- Values --- */
.values {
  padding: 120px 0;
  background: var(--white);
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.value-card {
  text-align: center;
  padding: 44px 28px;
  background: var(--light);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.05);
}

.value-card__number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.2;
  transition: opacity var(--transition);
}

.value-card:hover .value-card__number {
  opacity: 0.5;
}

.value-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.value-card__text {
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Brand Statement --- */
.brand-statement {
  padding: 100px 0;
  background: var(--light);
}

.brand-statement__inner {
  text-align: center;
}

.brand-statement__line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.brand-statement__word {
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}

.brand-statement__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.brand-statement__text {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero__about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__about-photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .values__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-intro__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-visual {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 768px) {
  .hero--about {
    padding: 130px 0 70px;
  }

  .hero__about-photo {
    max-width: 300px;
    aspect-ratio: 1/1;
  }

  .roles__grid {
    grid-template-columns: 1fr;
  }

  .role-card__image {
    height: 300px;
  }

  .values__grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    width: 220px;
    height: 220px;
  }

  .story__visual {
    display: none;
  }

  .brand-statement__line {
    gap: 16px;
  }

  .about-intro,
  .roles,
  .story,
  .values,
  .brand-statement {
    padding: 80px 0;
  }
}

/* ===================================================
   PREMIUM DESIGN EVOLUTION – Über uns
   Founder & editorial refinement layer
   =================================================== */

/* --- Role Cards – Premium Editorial --- */
.role-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
  position: relative;
}

.role-card:hover {
  border-color: rgba(229, 9, 20, 0.12);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
  transform: translateY(-6px);
}

/* Accent bottom reveal on hover */
.role-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 2;
}

.role-card:hover::after {
  opacity: 0.5;
}

.role-card__image {
  height: 460px;
}

.role-card__photo {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.role-card:hover .role-card__photo {
  transform: scale(1.03);
}

.role-card__name {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.role-card__title {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
}

.role-card__text {
  letter-spacing: 0.005em;
}

.role-card__tags li {
  transition: all var(--transition);
}

.role-card:hover .role-card__tags li {
  border-color: rgba(229, 9, 20, 0.12);
  background: rgba(229, 9, 20, 0.02);
}

/* --- Story Section – Premium Depth --- */
.story {
  background: linear-gradient(180deg, var(--dark) 0%, #0a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.story::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(229, 9, 20, 0.05) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.story__quote-mark {
  font-size: 7rem;
  filter: drop-shadow(0 0 20px rgba(229, 9, 20, 0.2));
  opacity: 0.2;
}

.story .section-title {
  font-weight: 800;
  letter-spacing: -0.035em;
}

.story__text {
  letter-spacing: 0.005em;
}

.story__line {
  width: 40px;
  height: 2px;
  opacity: 0.3;
}

/* --- Hero About – Refinement --- */
.hero--about .hero__title {
  text-shadow: 0 0 120px rgba(255, 255, 255, 0.03);
}

.hero__about-photo {
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.06);
}

.hero__about-photo::after {
  border-color: rgba(255, 255, 255, 0.06);
}

/* --- About Visual – Premium --- */
.about-visual__center {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all var(--transition);
}

.about-visual__tag {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: all var(--transition);
}

/* --- Value Cards – Interaction Refinement --- */
.value-card {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

.value-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.07);
}

.value-card__number {
  font-weight: 900;
}

/* --- Brand Statement – Premium --- */
.brand-statement__dot {
  box-shadow: 0 0 12px rgba(229, 9, 20, 0.2);
}

/* --- Mobile --- */
@media (max-width: 768px) {
  .role-card__image {
    height: 340px;
  }

  .role-card:hover {
    transform: none;
  }

  .role-card__name {
    font-size: 1.4rem;
  }

  .story__quote-mark {
    font-size: 5rem;
  }
}

@media (max-width: 480px) {
  .role-card__image {
    height: 280px;
  }

  .role-card__content {
    padding: 28px 24px;
  }

  .role-card__name {
    font-size: 1.3rem;
  }
}
