/* ============================================================
   NaschSalon - ueber-uns.css
   Styles for ueber-uns.html only.
   ============================================================ */

/* ── STORY SPLIT ── */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
}
.story-img { overflow: hidden; position: relative; }
.story-img img { height: 100%; object-position: center top; }
.story-badge {
  position: absolute;
  bottom: 2rem; right: 2rem;
  background: var(--bg);
  padding: 1.2rem 1.5rem;
  border-radius: 1px;
  box-shadow: 0 4px 24px rgba(26,12,4,0.12);
  text-align: center;
}
.story-badge .n {
  font-family: var(--fd);
  font-size: 3rem; font-weight: 600;
  color: var(--caramel); line-height: 1;
}
.story-badge .t {
  font-size: 0.68rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--choc3);
  margin-top: 0.3rem;
}
.story-body {
  background: var(--bg2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 5rem;
}
.story-body h2 { margin-bottom: 1.5rem; }
.story-body p { margin-bottom: 1.2rem; }
.story-body p strong { color: var(--choc2); font-weight: 500; }

/* ── TIMELINE ── */
.our-journey { background: var(--bg); padding: 7rem 5rem; }
.journey-header { max-width: 580px; margin-bottom: 5rem; }
.journey-line { display: flex; flex-direction: column; gap: 0; position: relative; padding-left: 3rem; }
.journey-line::before {
  content: '';
  position: absolute;
  left: 0.55rem; top: 0.7rem; bottom: 0.7rem;
  width: 1px; background: var(--border2);
}
.j-item { position: relative; padding: 0 0 3rem 2.5rem; }
.j-item:last-child { padding-bottom: 0; }
.j-dot {
  position: absolute;
  left: -2.5rem; top: 0.4rem;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  background: var(--caramel);
  border: 3px solid var(--bg);
  box-shadow: 0 0 0 1px var(--caramel);
}
.j-year {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--caramel);
  margin-bottom: 0.4rem; display: block;
}
.j-title {
  font-family: var(--fd);
  font-size: 1.3rem; font-weight: 600;
  color: var(--choc); margin-bottom: 0.5rem;
}
.j-text { font-size: 0.88rem; color: var(--choc3); line-height: 1.7; max-width: 520px; }

/* ── TEAM ── */
.team { background: var(--bg2); padding: 7rem 5rem; }
.team-header { margin-bottom: 3rem; }
.team-founder {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--caramel);
  border-radius: 2px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
  max-width: 680px;
}
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 35px rgba(26,12,4,0.08); }
.team-card-accent { height: 3px; background: var(--caramel); }
.team-body { padding: 1.4rem 1.5rem 1.8rem; }
.team-name {
  font-family: var(--fd);
  font-size: 1.2rem; font-weight: 600;
  color: var(--choc); margin-bottom: 0.2rem;
}
.team-role { font-size: 0.75rem; color: var(--caramel); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.8rem; }
.team-bio { font-size: 0.82rem; color: var(--choc3); line-height: 1.6; }

/* ── WERTE (VALUES) ── */
.werte { background: var(--bg); padding: 7rem 5rem; }
.werte-header { text-align: center; max-width: 560px; margin: 0 auto 4rem; }
.werte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.wert-card {
  padding: 2.5rem 2rem;
  border-top: 2px solid var(--border);
  transition: border-color .2s;
}
.wert-card:hover { border-color: var(--caramel); }
.wert-num {
  font-family: var(--fd);
  font-size: 3rem; font-weight: 300;
  color: var(--caramel); opacity: 0.3;
  line-height: 1; margin-bottom: 1rem;
}
.wert-title {
  font-family: var(--fd);
  font-size: 1.3rem; font-weight: 600;
  color: var(--choc); margin-bottom: 0.7rem;
}
.wert-text { font-size: 0.85rem; color: var(--choc3); line-height: 1.75; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
  .story-img { height: 60vw; }
  .story-body { padding: 4rem 1.5rem; }
  .our-journey { padding: 4rem 1.5rem; }
  .team { padding: 4rem 1.5rem; }
  .werte { padding: 4rem 1.5rem; }
  .werte-grid { grid-template-columns: 1fr; }
}

/* ── MOBILE OVERRIDES ── */
@media (max-width: 860px) {
  .story { grid-template-columns: 1fr; }
  .story-img { height: 65vw; min-height: 260px; }
  .story-body { padding: 3.5rem 1.5rem; }
  .story-badge { right: 1rem; bottom: 1rem; }
  .our-journey { padding: 4rem 1.5rem; }
  .journey-line { padding-left: 2rem; }
  .team { padding: 4rem 1.5rem; }
  .team-grid { grid-template-columns: 1fr; }
  .werte { padding: 4rem 1.5rem; }
  .werte-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 480px) {
  .werte-grid { grid-template-columns: 1fr; }
}
