/* ── Hero ── */
.ub-hero {
  min-height: 65vh;
  background:
    linear-gradient(
      to bottom,
      rgba(250,249,246,0.48) 0%,
      rgba(245,240,232,0.38) 50%,
      rgba(250,249,246,0.48) 100%
    ),
    url('assets/überunshero.jpeg') center center / cover no-repeat;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 140px 0 90px;
  text-align: center;
}
.ub-hero-grid {
  display: none;
}
.ub-hero-glow {
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(200,164,74,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ub-hero-inner {
  position: relative; z-index: 2;
  max-width: 680px; margin: 0 auto;
}
.ub-hero-inner .badge {
  margin-bottom: 18px;
  background: rgba(154,122,40,0.20);
  border: 2px solid #9a7a28;
  color: #6b5418;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.ub-hero-inner h1 {
  color: #111111;
  margin-bottom: 18px;
}
.ub-hero-inner h1 em { color: var(--gold-dark); font-style: italic; }
.ub-hero-inner > p {
  color: rgba(0,0,0,0.75);
  font-size: 1.08rem; max-width: 520px; margin: 0 auto;
  font-weight: 500;
}

/* ── Geschichte ── */
.ub-geschichte {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 70px; align-items: center;
}
.ub-img-wrap {
  position: relative;
  width: 100%;
  max-width: 380px;
}
.ub-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: transparent;
}
.ub-img-box img {
  width: 100%;
  height: auto;
  object-fit: initial;
}
.ub-accent-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold);
  border-radius: var(--radius);
  padding: 18px 22px;
  box-shadow: var(--shadow);
}
.ub-accent-num {
  font-family: 'DM Serif Display', serif;
  font-size: 2.2rem; color: #1a1a1a; line-height: 1;
}
.ub-accent-lbl {
  font-size: 0.78rem; color: #1a1a1a; font-weight: 600;
  margin-top: 4px; opacity: 0.75;
}
.ub-text .badge { margin-bottom: 14px; }
.ub-text h2 { margin-bottom: 14px; }
.ub-divider {
  width: 56px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  border-radius: 2px; margin: 18px 0 22px;
}
.ub-text p { margin-bottom: 16px; font-size: 0.97rem; color: #555550; line-height: 1.75; }
.ub-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.ub-tag {
  background: #f2ece0; color: var(--gold-dark);
  padding: 6px 14px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 500;
  border: 1px solid var(--border-gold);
}

/* ── Werte ── */
.ub-werte-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ub-wert-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: box-shadow var(--t), transform var(--t);
}
.ub-wert-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.ub-wert-icon {
  width: 52px; height: 52px;
  background: rgba(200,164,74,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.ub-wert-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem; font-weight: 700;
  color: #1a1a1a; margin-bottom: 10px;
}
.ub-wert-card p {
  font-size: 0.87rem; color: #555550; line-height: 1.7;
}

/* ── Team / Inhaber ── */
.ub-team-card {
  background: #f8f5ef;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: grid; grid-template-columns: 200px 1fr;
  gap: 48px; align-items: center;
}
.ub-team-img {
  width: 200px; height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0ebe2, #e8e2d4);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 4px solid var(--gold);
}
.ub-team-img img {
  width: 100%; height: 100%;
  object-fit: contain; mix-blend-mode: multiply;
}
.ub-team-name {
  font-family: 'DM Serif Display', serif;
  font-size: 1.7rem; color: #1a1a1a; margin-bottom: 4px;
}
.ub-team-role {
  font-size: 0.88rem; color: var(--gold-dark);
  font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 16px;
}
.ub-team-divider {
  width: 40px; height: 2px;
  background: var(--gold); border-radius: 2px;
  margin-bottom: 16px;
}
.ub-team-bio { font-size: 0.95rem; color: #555550; line-height: 1.75; }

/* ── Responsive ── */
@media (max-width: 1000px) {
  .ub-werte-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .ub-geschichte { grid-template-columns: 1fr; gap: 36px; }
  .ub-img-wrap { display: block; max-width: 560px; margin: 0 auto; }
  .ub-werte-grid { grid-template-columns: 1fr 1fr; }
  .ub-team-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .ub-team-img { margin: 0 auto; }
  .ub-team-divider { margin: 0 auto 16px; }
}
@media (max-width: 480px) {
  .ub-werte-grid { grid-template-columns: 1fr; }
}
