/* =========================================
   ÜBER UNS HERO
========================================= */

.ueber-hero {
  min-height: 88vh;
  padding: 170px 0 90px;
  align-items: center;
}

.ueber-hero .hero-bg img {
  object-position: center 16%;
  transform: scale(1.04);
  filter: saturate(.96) contrast(1.02);
}

.ueber-hero::after {
  background:
    linear-gradient(
      90deg,
      rgba(15, 17, 20, .86),
      rgba(15, 17, 20, .48),
      rgba(15, 17, 20, .18)
    ),
    linear-gradient(
      0deg,
      rgba(15, 17, 20, .82),
      transparent 48%
    );
}

.ueber-hero .hero-content {
  max-width: 850px;
  padding-top: 40px;
}

/* =========================================
   ABOUT INTRO
========================================= */

.about-intro-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items: stretch;
}

.about-intro-main {
  padding: 42px;
}

.about-intro-main p {
  margin-top: 18px;
}

.about-stat-card {
  border-radius: 30px;
  border: 1px solid rgba(217, 119, 6, .35);
  background:
    radial-gradient(circle at top right, rgba(255, 184, 77, .22), transparent 42%),
    linear-gradient(135deg, rgba(217, 119, 6, .18), rgba(255, 255, 255, .055));
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  box-shadow: var(--shadow);
}

.about-stat-card strong {
  display: block;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: .9;
  color: var(--accent2);
  letter-spacing: -.08em;
}

.about-stat-card span {
  display: block;
  margin-top: 12px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
}

.about-stat-card p {
  margin-top: 14px;
}

/* =========================================
   TEXT BAND
========================================= */

.about-text-band {
  max-width: 980px;
  padding: 44px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .035));
  position: relative;
  overflow: hidden;
}

.about-text-band::before {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(217, 119, 6, .18);
  filter: blur(10px);
}

.about-text-band h2,
.about-text-band p,
.about-text-band .kicker {
  position: relative;
  z-index: 1;
}

.about-text-band p {
  margin-top: 18px;
  max-width: 860px;
}

/* =========================================
   VALUES
========================================= */

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-card {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line);
  transition: .25s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, .085);
  border-color: rgba(217, 119, 6, .36);
}

.value-number {
  display: inline-flex;
  color: var(--accent2);
  font-weight: 900;
  margin-bottom: 28px;
}

.value-card h3 {
  margin-bottom: 12px;
}

/* =========================================
   EXPERTISE PANEL
========================================= */

.expertise-panel {
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.expertise-panel p {
  margin-top: 18px;
}

.expertise-list {
  display: grid;
  gap: 12px;
}

.expertise-list span {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .045);
  color: var(--muted);
}

.expertise-list span::before {
  content: "✓";
  color: var(--accent2);
  font-weight: 900;
  margin-right: 10px;
}

/* =========================================
   PEOPLE STRIP
========================================= */

.people-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.person-card {
  min-height: 480px;
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  align-items: flex-end;
}

.person-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.person-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(15, 17, 20, .92),
    rgba(15, 17, 20, .18)
  );
  z-index: -1;
}

.person-card h3 {
  margin-top: 12px;
  margin-bottom: 8px;
}

/* =========================================
   RESPONSIVE TABLET
========================================= */

@media (max-width: 900px) {
  .about-intro-grid,
  .values-grid,
  .expertise-panel,
  .people-strip {
    grid-template-columns: 1fr;
  }

  .about-intro-main,
  .about-text-band,
  .expertise-panel {
    padding: 28px;
  }

  .about-stat-card {
    min-height: 260px;
  }

  .person-card {
    min-height: 390px;
  }
}

/* =========================================
   RESPONSIVE MOBILE
========================================= */

@media (max-width: 620px) {
  .ueber-hero {
    min-height: 82vh;
    padding: 135px 0 70px;
  }

  .ueber-hero .hero-bg img {
    object-position: center 12%;
  }

  .about-intro-main,
  .about-text-band,
  .expertise-panel,
  .value-card {
    padding: 22px;
  }

  .about-stat-card {
    padding: 24px;
  }

  .about-stat-card strong {
    font-size: clamp(3.8rem, 22vw, 5.6rem);
  }

  .person-card {
    min-height: 350px;
  }
}

.chef-highlight{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:22px;
  align-items:stretch;
}

.chef-image{
  position:relative;
  overflow:hidden;
  border-radius:32px;
  border:1px solid var(--line);
  min-height:560px;
}

.chef-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.chef-content{
  position:relative;
  overflow:hidden;
  padding:42px;
  border-radius:32px;
  border:1px solid rgba(217,119,6,.22);
  background:
    radial-gradient(circle at top right, rgba(255,184,77,.18), transparent 36%),
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.04));
}

.chef-content::after{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  right:-130px;
  top:-130px;
  border-radius:50%;
  background:rgba(217,119,6,.12);
  filter:blur(10px);
}

.chef-content > *{
  position:relative;
  z-index:1;
}

.chef-content h2{
  max-width:620px;
  margin-bottom:18px;
}

.chef-content p{
  max-width:680px;
}

.chef-points{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:28px;
}

.chef-points span{
  padding:11px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--line);
  color:var(--muted);
  font-size:.9rem;
}

@media (max-width: 980px){

  .chef-highlight{
    grid-template-columns:1fr;
  }

  .chef-image{
    min-height:420px;
  }
}

@media (max-width: 620px){

  .chef-content{
    padding:24px;
    border-radius:24px;
  }

  .chef-image{
    min-height:340px;
    border-radius:24px;
  }

  .chef-points{
    display:grid;
    grid-template-columns:1fr;
  }

  .chef-points span{
    width:100%;
  }
}