/* =========================================================
   INDEX.CSS — Über mich / About Page Styles
   ========================================================= */

/* ── Hero Section ── */
.about-hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.about-hero__visual {
  position: relative;
  background: var(--slate-900);
  overflow: hidden;
  min-height: clamp(350px, 55vw, 900px);
}

.about-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  opacity: 0.8;
  transform: scale(1.04);
  transition: transform 1.2s var(--ease), opacity 1s var(--ease);
}
.about-hero__img.loaded {
  transform: scale(1);
  opacity: 1;
}

/* Decorative gold bar on image right edge */
.about-hero__visual::after {
  content: '';
  position: absolute;
  top: 10%; right: 0;
  width: 3px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.about-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 7rem) var(--page-gutter) clamp(3rem, 6vw, 7rem) clamp(2.5rem, 5vw, 6rem);
}

.about-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.about-hero__eyebrow::before {
  content: '';
  display: block;
  width: clamp(1.5rem, 3vw, 2.5rem);
  height: 1px;
  background: var(--gold);
}

.about-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  font-weight: 300;
  color: var(--slate-900);
  line-height: 1.05;
  margin-bottom: 2rem;
}
.about-hero h1 em {
  font-style: italic;
  color: var(--gold-dark);
}

.about-hero__lead {
  font-size: clamp(0.95rem, 1.5vw, 1.12rem);
  font-weight: 300;
  line-height: 1.85;
  color: var(--slate-600);
  max-width: 46ch;
  margin-bottom: 2.5rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 5;
}
.scroll-hint__line {
  width: 1px;
  height: clamp(2.5rem, 5vw, 4rem);
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
.scroll-hint__label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate-400);
  transform: rotate(90deg);
  transform-origin: center;
  margin-top: 0.5rem;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* ── About Story Sections ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.story-grid--reverse { direction: rtl; }
.story-grid--reverse > * { direction: ltr; }

.story-text {}
.story-text .label { display: block; margin-bottom: 1rem; }
.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--slate-900);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.section--dark .story-text h2 { color: var(--white); }
.story-text p {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  line-height: 1.85;
  color: var(--slate-600);
  margin-bottom: 1rem;
}
.section--dark .story-text p { color: var(--slate-400); }
.story-text p:last-of-type { margin-bottom: 1.75rem; }

.story-visual {
  position: relative;
}
.story-visual__frame {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--slate-100);
}
.story-visual__frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.story-visual__frame:hover img { transform: scale(1.03); }

/* Decorative corner accent */
.story-visual__accent {
  position: absolute;
  width: 60px; height: 60px;
  border: 2px solid var(--gold);
}
.story-visual__accent--tl { top: -12px; left: -12px; border-right: none; border-bottom: none; }
.story-visual__accent--br { bottom: -12px; right: -12px; border-left: none; border-top: none; }

/* ── Values / Philosophy Grid ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.value-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--slate-100);
  position: relative;
  transition: border-color var(--t-med), transform var(--t-med);
}
.value-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: clamp(1.75rem, 3vw, 2.5rem);
  width: clamp(1.5rem, 3vw, 2.5rem);
  height: 2px;
  background: var(--gold);
  transition: width var(--t-med);
}
.value-card:hover::before { width: clamp(3rem, 5vw, 5rem); }

.value-card__icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.value-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--slate-800);
  margin-bottom: 0.6rem;
}
.value-card p {
  font-size: clamp(0.82rem, 1.1vw, 0.92rem);
  color: var(--slate-500, #6B7280);
  line-height: 1.75;
}

/* ── Stats Row ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--slate-700);
  border: 1px solid var(--slate-700);
  margin-top: clamp(4rem, 7vw, 7rem);
}
.stat-item {
  background: var(--slate-800);
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
  text-align: center;
  transition: background var(--t-fast);
}
.stat-item:hover { background: var(--slate-700); }
.stat-item__num {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-item__label {
  font-size: clamp(0.6rem, 0.9vw, 0.7rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate-400);
}

/* ── Quote Block ── */
.quote-block {
  text-align: center;
  padding-block: var(--section-pad);
  padding-inline: var(--page-gutter);
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
.quote-block::before {
  content: '"';
  position: absolute;
  top: -0.2em; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: clamp(12rem, 25vw, 24rem);
  color: var(--slate-100);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.quote-block blockquote {
  position: relative;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.6rem);
  font-weight: 300;
  font-style: italic;
  color: var(--slate-800);
  max-width: 22em;
  margin: 0 auto 1.5rem;
  line-height: 1.45;
}
.quote-block cite {
  font-family: var(--font-sans);
  font-size: clamp(0.65rem, 0.9vw, 0.75rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .about-hero__visual {
    min-height: 50vw;
    max-height: 65vw;
  }
  .about-hero__content {
    padding: clamp(2.5rem, 5vw, 4rem) var(--page-gutter);
  }

  .story-grid,
  .story-grid--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .values-grid { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .values-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; }
}
