/* ── Team ── */
.team-section {
  padding: 0 64px;
  margin-bottom: 110px;
}

.team-inner {
  max-width: 1200px;
  margin: 0 auto;
}

h2.team-h2 {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text);
  margin-top: 8px;
  margin-bottom: 48px;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 10px;
  overflow: hidden;
}

.team-card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

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

.team-card-body {
  padding: 16px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

p.team-card-name {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0px;
  margin-rop: 10px;
  margin-bottom: 15px;
  max-width: none;
}

p.team-card-role {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  margin: 0;
  max-width: none;
}

p.team-card-desc {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  margin: 0;
  max-width: none;
  margin-top: 4px;
}

/* ── Service Preise ── */
.service-preise-section {
  padding: 0 64px;
  margin-bottom: 72px;
}

.service-preise-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-h2 {
  font-family: var(--body);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 32px;
  max-width: none;
}

.service-preise-grid {
  display: flex;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.service-preis-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--light);
}

.service-preis-item:first-child {
  border-top: 1px solid var(--light);
}

.service-preis-label {
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  color: var(--text);
}

.service-preis-value {
  font-family: var(--body);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
}

/* ── Service Accordion ── */
.service-accordion-section {
  padding: 0 64px;
  margin-bottom: 96px;
}

.service-accordion-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-accordion {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
}

.sa-item {
  border-top: 1px solid var(--light);
}

.sa-item:last-child {
  border-bottom: 1px solid var(--light);
}

.sa-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.sa-label {
  font-family: var(--body);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 600;
  color: var(--text);
  transition: color 0.2s;
}

.sa-trigger:hover .sa-label { color: var(--mid); }
.sa-item--open .sa-label { color: var(--mid); }

.sa-icon {
  width: 20px;
  height: 20px;
  position: relative;
  flex-shrink: 0;
}

.sa-icon::before,
.sa-icon::after {
  content: '';
  position: absolute;
  background: var(--mid);
  transition: transform 0.4s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.3s;
}

.sa-icon::before {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
}

.sa-icon::after {
  width: 100%;
  height: 1px;
  top: 50%;
  left: 0;
}

.sa-item--open .sa-icon::before {
  transform: rotate(90deg);
  opacity: 0;
}

.sa-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.sa-panel-inner {
  padding-bottom: 32px;
}

.sa-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
  max-width: 720px;
}

.sa-list li {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 300;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.sa-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--light);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .team-card:nth-child(4),
  .team-card:nth-child(5) { display: none; }
}

@media (max-width: 768px) {
  .team-section,
  .service-preise-section,
  .service-accordion-section { padding: 0 24px; }
  .team-grid { grid-template-columns: repeat(1, 1fr); }
  .team-card:nth-child(4),
  .team-card:nth-child(5) { display: block; }
}